• home
  • forum
  • my
  • kt
  • download
  • this:2/5 25records  total:110    Start  Previous  Next  Last    goto:
    Custom Handlers
    ON: 2007-07-05 08:57:11
    This tutorial covers:
    Recognize the role of custom handlers in ASP.NET; Write custom binary handlers; Write just-in-time compiled custom handlers; Let IIS and ASP.NET know about your custom handler;
    35 times | category: [NET]
    The Application and HTTP Modules
    ON: 2007-07-05 08:53:59
    This tutorial covers working with application state and application-wide events within your ASP.NET application. In normal desktop applications, the notion of a global meeting place for various parts of an application is well-understood. For example, MFC, a C++ class library supporting low-level Windows development, includes a class named CWinApp that holds state useful throughout the program. This state includes such items as a handle to the current instance of the application, a handle to the main window, and the parameters that were passed in when the application started. The CWinApp class also runs the message loopâ
    23 times | category: [NET]
    Caching Output
    ON: 2007-07-05 08:41:45
    After completing this tutorial, you will be able to:
    *Cache content
    *Improve the performance of Web applications by using output caching
    *Manage the cached content through the OutputCache directive
    *Manage the cached content through the HttpCachePolicy class
    17 times | category: [NET]
    Working with GDI+ in ASP.NET
    ON: 2007-07-05 08:37:40
    GDI+ (Graphics Device Interface) is the new interface for drawing Windows graphics. It is used frequently in Windows Applications but the nice thing is that they are also available in ASP.NET Web Applications.
    3 times | category: [NET]
    Sniffing visitor information
    ON: 2007-07-05 08:36:44
    Collecting lots of browser information from the visitor with VB .NET in ASP .NET.
    2 times | category: [NET]
    Setting up your ASP.NET server (IIS)
    ON: 2007-07-05 08:34:08
    A guide that shows you how to install IIS server and configure it to work with ASP.NET, not just with ASP
    5 times | category: [NET]
    How to Save an Image in a SQL Server Database
    ON: 2007-07-05 08:19:38
    Most of the web applications have a lot of images used in it. These images are usually stored in a web server folder and they are accessed by giving the relative path to the file with respect to the root folder of the website. .Net being the platform for distributed application now, ASP.Net can be used to store images that are small to be stored in a database like SQL Server 2000 and later versions
    33 times | category: [NET]
    Web Application Basics
    ON: 2007-07-04 16:49:13
    This tutorial covers the fundamentals of building a Web-based application. Unlike the development of most desktop applications, in which most of the parts are available locally (as components on the user's hard disk drive), developing a Web application requires getting software parts to work over a widely distributed network using a disconnected protocol. The technologies underlying ASP.NET have been around for a long time. Of course ASP.NET makes use of this technology underneath, while making it very approachable at the same time.
    23 times | category: [NET]
    Managing and Deploying Web Applications
    ON: 2007-07-04 16:45:33
    This tutorial covers:
    Recognize ways the Visual Studio project models affect deployment; Build a Web setup utility
    209 times | category: [NET]
    Site Map and Bread Crumbs for your website
    ON: 2007-07-04 15:57:17
    Using ASP.NET 2.0 it is very easy to create a site map of your website. One of the things you can do with a site map is build a bread crumb navigation style, which we will cover in this tutorial.
    3 times | category: [NET]
    Introductoin to ASP
    ON: 2007-07-04 15:50:36
    This tutorial will help you figure out how to write Web applications using Microsoft's most current version of its HTTP request processing frameworkâ
    22 times | category: [NET]
    Caching
    ON: 2007-07-04 15:47:21
    This tutorial covers ASP.NET's built-in data caching features. Caching is a long-standing means of improving the performance of any software system. The idea is to place frequently used data in quickly accessed media. Even though access times for mass storage continue to improve, accessing data from a standard hard disk is much slower than accessing it in memory. By taking often-used data and making it available quickly, you can improve the performance of your application dramatically.
    13 times | category: [NET]
    Session State
    ON: 2007-07-04 15:38:44
    This tutorial covers managing session state within your ASP.NET application. Programming Web applications requires you to be very mindful of how the state of your application is distributed at any moment. One of the most important types of state in a Web application is session stateâ
    49 times | category: [NET]
    Personalization
    ON: 2007-07-04 15:30:18
    This tutorial covers ASP.NET's built-in personalization features. A major Theme throughout ASP.NET 2.0 is to provide frameworks and support for implementing features most Web sites need. For example, we saw the support ASP.NET 2.0 provides for making a common look and feel throughout a site in Tutorial 8. We saw the new login controls in Tutorial 10. The new login controls are there so you don't have to hash out yet one more login control.
    22 times | category: [NET]
    Databinding
    ON: 2007-07-04 15:24:31
    This tutorial covers one of ASP.NET's most useful features: databinding. A number of controls within ASP.NET have the capability to understand the form and content of a collection and to render the correct tags to represent such user elements as list boxes, radio button lists, and combo boxes. Here we'll examine how these controls work and how to use them on a Web page.
    72 times | category: [NET]
    Logging In
    ON: 2007-07-04 15:02:24
    This tutorial covers:
    *Manage Web-based security
    *Implement Forms Authentication
    *Work with Forms Authentication in the raw
    *Work with ASP.NET login controls to make writing login pages painless
    *Work with ASP.NET role-based authorization
    20 times | category: [NET]
    Charset convert
    ON: 2007-07-04 15:01:49
    Sometimes you will need to export some data from an ASP page and use another charset than the encoding you have specified in Web.config. This short sample EncodeString function lets you write response string data using any code page.
    7 times | category: [NET]
    Work with If-Modified-Since and Last-Modified in ASP.Net.
    ON: 2007-07-04 15:00:29
    Short support vb.Net functions to convert date from/to http string date and sample code to send static files with 200 OK + Last-Modified http header and 304 Not Modified when If-Modified-Since request header is present.
    10 times | category: [NET]
    Formatting Numbers, Dates, and Times in ASP.NET
    ON: 2007-07-04 14:53:19
    One of the nice things about VBScript was its built-in formatting functions, such as FormatCurrency, FormatNumber, FormatDateTime, etc. Read on to learn how to use these functions
    38 times | category: [NET]
    Basics of the DataList control
    ON: 2007-07-04 14:52:12
    In this article, we're going to study the DataList control which is one of the most often used controls provided by ASP.NET.
    4 times | category: [NET]
    Introduction to ASP.NET Mobile
    ON: 2007-07-04 14:48:48
    This article will give you an idea of how to develop mobile web applications using ASP.NET and the Microsoft Visual Studio .NET environment. It will describe some of the most important mobile specific controls but won't go deep into the subject.
    14 times | category: [NET]
    Dealing with errors and tracing in ASP.NET
    ON: 2007-07-04 14:25:45
    In this article we discuss dealing with errors. We'll work with debugging issues, tracing, and custom error generation.
    10 times | category: [NET]
    How to get the .NET framework version your website is running on
    ON: 2007-07-04 14:25:18
    Tutorial explaining how to get the .NET framework version your website is running on.
    1 times | category: [NET]
    Sending email in ASP.NET
    ON: 2007-07-04 14:21:48
    Tutorial showing how to send an email in ASP.NET.
    3 times | category: [NET]
    Basics of using DataGrid
    ON: 2007-07-04 14:19:06
    This tutorial introduces you to the DataGrid control. It tells you about the BoundColumn and shows an example of how to use it
    5 times | category: [NET]
    this:2/5 25records  total:110    Start  Previous  Next  Last    goto:

    Category

      NET (110)