• home
  • forum
  • my
  • kt
  • download
  • this£º1/7 25records  total:175    start  Previous  Next  Last    goto:
    Encrypting Connection Strings in web.config file
    ON: 2009-04-14 08:22:19
    Tutorial explains how to protect web.config sensitive information, like connection strings, usually stored as plain text. Microsoft has provided the capability to encrypt sensitive information in configuration files including connection strings in ASP.NET 2.0. With this new capability you can easily encrypt sections of configuration files which makes your application more secure.
    74 times | category: [NET]
    Encrypting Connection Strings in web.config file
    ON: 2009-04-14 08:19:27
    Tutorial explains how to protect web.config sensitive information, like connection strings, usually stored as plain text. Microsoft has provided the capability to encrypt sensitive information in configuration files including connection strings in ASP.NET 2.0. With this new capability you can easily encrypt sections of configuration files which makes your application more secure.
    11 times | category: [NET]
    Data Source Controls in ASP.NET 2.0
    ON: 2009-04-14 08:17:05
    Tutorial introduces a number of new Web controls designed for accessing and modifying data in ASP.NET 2.0. You can perform all common database related tasks like displaying, editing and updating the data with minimum effort. ASP.NET 2.0 has got some smart and intelligent new data source controls which can even manipulate specialized data sources like XML files.
    53 times | category: [NET]
    Cross Page posting in ASP.NET 2.0
    ON: 2009-04-14 08:15:55
    Tutorial explains how to post data between web forms, using new Cross Page posting functionality. Keeping in view limitations in ASP.NET 1.x, Microsoft has reinstated Cross Page posting feature in ASP.NET 2.0. Many of us might not be aware of Cross Page posting feature in classic ASP.
    83 times | category: [NET]
    Client Side Script Debugging in ASP.NET
    ON: 2009-04-14 08:11:36
    Tutorial explains how to use Client Side Debugger, to simplify the debugging process of javascript code in ASP.NET web application. Every one of us is well aware of problems posed when debugging client side script code. This article talks about various new techniques and troubleshooting tips that help debug client side script code efficiently in Visual studio 2005.
    43 times | category: [NET]
    Generating Excel Report in ASP.NET 2.0
    ON: 2009-04-14 08:08:00
    Explains how ASP.NET web application can interact with Excel files, both reading and writing. Excel is such a powerful tool that many companies make extensive use of it for analyzing data.
    73 times | category: [NET]
    Introduction to AJAX and Microsoft ASP.NET AJAX Framework
    ON: 2009-04-14 08:03:50
    Explains how to use AJAX to make more dynamic and responsive ASP.NET Web applications, which ultimately results in rich user experience. AJAX, an acronym for Asynchronous JavaScript And XML is a group of technologies like Java Script, XML, CSS, DOM, HTML and DHTML.
    20 times | category: [NET]
    Web Site Navigation in ASP.NET 2.0
    ON: 2009-04-14 08:01:55
    Explains how to give consistent ways for the users to navigate the website. Web applications that you develop will have multiple pages interconnected with each other in some fashion. You need to have a navigation system in place which can help the end user to successfully work through your application.
    56 times | category: [NET]
    Security Features in ASP.NET 2.0
    ON: 2009-04-13 11:17:12
    Tutorial covers number of new features and tools to secure ASP.NET applications. The authentication and authorization of users and resistance against the malicious attacks are important tasks in web applications.
    89 times | category: [NET]
    Generating WordML Reports Using Templates and XPath
    ON: 2009-04-13 11:11:56
    Tutorial shows how to easily generate reports displayed to MS Word 2003 from ASP.NET web page using a user designed template. XML support in Word 2003 is new exciting feature. Word 2003 now supports native XML vocabulary called Word Markup Language (WordML).
    46 times | category: [NET]
    Visitor Informations From Request.ServerVariables Collection
    ON: 2009-02-27 10:00:15
    Tutorial explains few methods to know more information about your web site visitors. The ServerVariables collection retrieves the values of predetermined environment variables and request header information. If you've ever wondered how to get your website visitor's name, or their IP address, or the referrer address, then look no more. Request.ServerVariables is almost all you need.
    10 times | category: [NET]
    CAPTCHA - prevent bots and automatic submissions in ASP.NET
    ON: 2009-02-27 09:57:16
    In this article I will explain the use of CAPTCHA and provide a sample class that you can use in your projects. So, what is CAPTCHA? Standing for "Completely Automated Public Turing test to tell Computers and Humans Apart", A CAPTCHA is a program that can generate and grade tests that most humans can pass, but current computer programs can't pass
    9 times | category: [NET]
    How to use TreeView control in ASP.NET
    ON: 2009-02-27 09:56:14
    ASP.Net 2.0 introduces many new controls including a TreeView Control, which can be used to consume information from hierarchical data sources like an XML file and then display that information. In this tutorial, I am going to statically data bind the TreeView control with the contents of an XML file.
    16 times | category: [NET]
    File Upload & Compression in ASP.Net
    ON: 2009-02-27 09:49:59
    This article will show you how to upload a file to the web server and compress it using the compression methods provided in .Net. I will use the open source compression method to compress to a .gz file. The method is available in System.IO.Compression.
    7 times | category: [NET]
    E-Mail in ASP.NET
    ON: 2009-02-27 09:46:48
    In this article we will explore three different and important e-mailing techniques; to send a simple text e-mail, to send HTML content via e-mail, and to send attachments in ASP.NET Web Application.
    10 times | category: [NET]
    Using NHibernate and Log4Net in ASP.NET
    ON: 2009-02-26 15:57:34
    Hibernate and Log4J are a de-facto standard of ORM (Object-relational mapping) and logging (respectively) in Java world. That's why both were ported to .NET runtime environment. NHibernate is ORM solution and is intended for transparent binding .NET classes to database tables. Log4Net is logging framework which is useful for tracking errors in application and can write logs either to database table or flat files.
    32 times | category: [NET]
    A Simple Month Calendar Control for ASP.NET
    ON: 2009-02-26 15:51:57
    To select a date in your web form, we have built-in calendar control for this. But what to do when we need to select just month and year for our report? The simplest way is to use date select calendar and let user select any day in desired month and then throw day he selected, leaving only month and year. But, is this solution user-friendly; do you like it? So we decided to write our own control for selecting month/year pair, which can be used on pages where needed.
    263 times | category: [NET]
    Multi page forms with MultiView control in ASP.NET
    ON: 2009-02-26 15:50:05
    Sometimes we decide to separate process of form filling into several steps (pages). In past at using old ASP, we should solve this problem for example saving entered data into database table after each step. ASP.NET 2.0 offers more elegant solution where we can first fill multi page form completely and after store all entered data in table in database.
    28 times | category: [NET]
    Building a Shopping List
    ON: 2009-02-26 15:43:02
    I am sure that most of us before going for shopping on a certain occasion, we have to dig up our mind to draft a shopping list. This tutorial will explain how to build a shopping list using ASP.NET 2.0 with MS SQL database. Based on this article, some cool technical stuff in Visual Web Developer will be used to facilitate our work.
    7 times | category: [NET]
    Build a Poll System in ASP.NET
    ON: 2009-02-26 15:25:12
    There are many websites that have polls on their front page where users (anonymous and members) give their opinions. In this article, we will look at how to design a polling system, having a back-end to insert new polls along with their answers as well as how to process and store the votes of the users.
    15 times | category: [NET]
    Make Charts in ASP.NET
    ON: 2009-02-26 15:18:00
    Graphs and charts are important tools for the analysis of data. In this tutorial, we will look at how to represent data in terms of a bar chart and pie chart. To make this possible, the latest rendition of Microsoft's Graphics Device Interface (GDI+) was brought on the market.
    15 times | category: [NET]
    Creating an RSS Feed in ASP.NET
    ON: 2009-02-26 15:11:52
    This article explains how to create an RSS feed in ASP.NET. The author first explains the structure of RSS feed and then provides working code example from Stardeveloper.com to explain how an RSS feed can be generated dynamically. After reading this article you will be able to create an RSS feed for your website.
    81 times | category: [NET]
    Speed Optimization in ASP.NET 2.0 Web Applications
    ON: 2009-02-26 15:04:46
    Developing a web application that responds to users requests quickly is a target and a challenge for all web developers. ASP.NET was designed with speed optimization and performance improvements in mind. This tutorial covers correct using of state management and data access to develop a high performance ASP.NET application.
    27 times | category: [NET]
    Caching in an ASP.NET
    ON: 2009-02-26 15:00:05
    Caching is the most effective technique you can use to improve the performance of your ASP.NET web application. Designing your application with caching in mind, improves both the performance and the scalability of that application
    8 times | category: [NET]
    Speed Optimization in ASP.NET
    ON: 2009-02-26 14:57:52
    Developing a web application that responds to users requests quickly is a target and a challenge for all web developers. ASP.NET was designed with speed optimization and performance improvements in mind. This tutorial covers correct using of state management and data access to develop a high performance ASP.NET application.
    11 times | category: [NET]
    this£º1/7 25records  total:175    start  Previous  Next  Last    goto:

    Category

      NET (175)