• home
  • forum
  • my
  • kt
  • download
  • this:4/5 25records  total:110    Start  Previous  Next  Last    goto:
    ASP to ASP+ Migration
    ON: 2007-07-03 14:47:21
    Microsoft is set to release an exciting upgrade to ASP later in 2000. This is a major upgrade unlike the minor changes from ASP 2.0 to 3.0. Unlike past upgrades, however, this one will not be painless. When they designed ASP+, Microsoft had to make the hard decision occasionally to break backward compatibility in the interest of improved functionality and features. Before embarking on the inevitableâ
    5 times | category: [NET]
    Using ASP.NET Code-Behind Without Visual Studio.NET
    ON: 2007-07-03 14:44:00
    The author writes "One of the things that keeps coming up as a benefit of switching to ASP.NET is the ability to use code-behind to separate display code from application logic. In Visual Studio.NET, this is 'automagically' done for you. So what if you don't have VS.NET? Here's how you can implement code-behind using just a plain old text editor and the tools included in the .NET Framework... no VS.NET required!" Source codes available for download.
    4 times | category: [NET]
    Using CultureInfo to modify output
    ON: 2007-07-03 14:25:15
    Mostly we want to change output results of our applications to another culture setting. In this code sniplet we will format current date time for our culture settings.
    4 times | category: [NET]
    Generating Forms Authentication Compatible Passwords (SHA1)
    ON: 2007-07-03 14:24:42
    In this article we will take a quick look at two methods for creating SHA1 passwords for use on the web using .NET. It is dangerous to store passwords anywhere in plain text!! SHA1 gives a quick and easy way to encode a password into a non-human readable form. This means it is safer to store in a database, and should the database be viewed by anyone who shouldn't know the passwords, it will be much more difficult for them to work out what a user's password is.
    3 times | category: [NET]
    Submitting Web Form data from one ASP.NET page to another
    ON: 2007-07-03 14:21:39
    This article discusses different options you as a developer have in ASP.NET to send data from one ASP.NET page to another. Since you cannot use ASP.NET Web Controls (System.Web.UI.WebControls) in such a scenario (which only allow posting back of data to the same page), this article discusses other ways like using HttpContext object.
    23 times | category: [NET]
    ASP.NET Website Programming: Problem - Design - Solution
    ON: 2007-07-03 14:12:03
    Sample chapter from "ASP.NET Website Programming: Problem - Design - Solution" on deploying the web site. Describes in detail how you should deploy your site once you've finished it, discusses deployment of database and application components separately.
    3 times | category: [NET]
    How to determine what server is given web site running on using ASP.NET?
    ON: 2007-07-03 13:59:44
    This comprehensive tutorial will walk you step-by-step to create a single ASP.NET page by which you'll be able to retrieve the server name of any given web site. Explains all the code in detail. Very useful.
    1 times | category: [NET]
    Sending Mass E-Mails ( Newsletter ) using ASP.NET.
    ON: 2007-07-03 13:58:31
    This is part II of a series of articles in which we'll learn how to send mass e-mails ( both text and HTML ) to a list of subscribers using ASP.NET. We'll also learn what are validation controls and how they can help us validate user input.
    14 times | category: [NET]
    No ActiveX Server Registration Needed with ASP.NET
    ON: 2007-07-03 13:51:59
    Need to create a wrapper for ActiveX and use it in ASP.NET? The advantage is these wrappers don't require registration of ActiveX on server. Just copy it, allowing for easy deployment on remote servers. Even run ActiveX on shared hosting.
    1 times | category: [NET]
    File Uploading with ASP.NET
    ON: 2007-07-03 13:47:16
    A comprehensive tutorial on uploading files to server hard disk using built-in ASP.NET server controls. Describes how to upload more than one file? how to upload only image files? how to retrieve other form non-binary field values? how to view and delete files uploaded on the server? how to force user to download a file without viewing it? how to expose correct file name to the user browser instead of a generic file.aspx? how to retrieve correct content-type for the file from system registry? how to set/unset max file upload size limit per folder of your application?
    38 times | category: [NET]
    Migration from J2EE to .NET.
    ON: 2007-07-03 13:45:09
    An article which discusses the similarites between different technologies of J2EE and .NET and helps you to move from J2EE to .NET. Quick tips to get you started, in case you need to migrate a J2EE based application to a .NET based application.
    2 times | category: [NET]
    Introduction to Web Services.
    ON: 2007-07-03 13:44:25
    The label "web services," as broadly applied, has two levels of meaningâ
    2 times | category: [NET]
    MS SQL RD4 Encryption
    ON: 2007-07-03 13:20:06
    This is a simple RD4 encryption stored procedure. It's nice because it uses the same procedure to encrypt and decrypt and it beats using a cast as varbinary.
    1 times | category: [NET]
    Early Adopter HailStorm (.NET My Services) : Talking To HailStorm.
    ON: 2007-07-03 13:18:20
    Complete online chapter "Talking To HailStorm" from "Early Adopter HailStorm (.NET My Services)". Provides in depth information on what is .NET My Services, what it provides and how to make use of it.
    9 times | category: [NET]
    Writing Your First ASP.NET Page
    ON: 2007-07-03 12:58:47
    Given that all the prerequisites and ASP.NET are installed, this tutorial walks you through writing ASP.NET pages of your very own
    3 times | category: [NET]
    Displaying Information about the ASP.NET Process
    ON: 2007-07-03 12:57:00
    The author writes "With ASP.NET you can configure the 'ASP.NET engine' to automatically restart itself when certain criteria are met. For example, if the Web server has 100 requests queued up, you may wish to have the Web server restarted, assuming that some script or DLL is hanging the Web server. Additionally, you can set requirements on restarting the Web server on the memory usage, the total number of requests, or by the total time the Web server's run. This proactive approach was implemented by the ASP.NET team in order to increase the overall uptime of a Web site running ASP.NET: if the memory suddenly shoots through the roof, the Web server can be restarted, reigning in the memory usage and starting anew. The information regarding the life cycle of the current (and past) ASP.NET processes can be examined through the use of the ProcessModelInfo class." This article examines how to retrieve and present such information.
    13 times | category: [NET]
    File Uploading in ASP.Net Using C#.
    ON: 2007-07-03 12:54:04
    File uploading has always been a tedious task for the web developer community. Either we have to use a third party component or write several lines of code. With the advent of ASP.Net file uploading has become a lot easier, importantly without the need for third party components. All we have to do is to use the ASP.Net HTML File control and write a few lines of C# code.
    11 times | category: [NET]
    Displaying XML Data in an ASP.NET page
    ON: 2007-07-03 12:50:52
    The .NET framework provides the Dataset object which is designed to handle data abstractly independent of the data source. The DataSet can handle data from variety of sources like SQL, XML etc. In this article we'll show you how to bind a data grid control to data in an XML file using the DataSet class.
    1 times | category: [NET]
    Sending e-mail with attachments from an ASP.NET page.
    ON: 2007-07-03 12:50:15
    This article describes how to send emails with attachments using System.Web.Mail namespace from an ASP.NET page. Full source code available for download.
    1 times | category: [NET]
    Professional ASP.NET 1.0 2002 Edition : Exposing Web Services
    ON: 2007-07-03 12:36:38
    Complete Online Chapter "Exposing Web Services" from Wrox Press book "Professional ASP.NET 1.0 2002 Edition". Topics covered include "Web Services", "SOAP Headers", "Synchronous vs Asynchronous" and "Data Caching".
    11 times | category: [NET]
    Object Syntax Introduction
    ON: 2007-07-03 12:29:23
    A Sample Chapter 5 from "Professional VB.NET 2nd Edition". Visual Basic has had powerful object-oriented capabilities since the introduction of version 4.0. VB.NET carries that tradition forward. VB.NET simplifies some of the syntax and greatly enhances these capabilities, and now supports the four major defining concepts required for a language to be fully object-oriented. This chapter will explore the creation and use of classes and objects in VB.NET
    4 times | category: [NET]
    Get Detailed Information About Your Site Visitors In Real Time using ASP.NET
    ON: 2007-07-03 12:21:20
    Have you ever wanted to see who is viewing your web site in real time? how many of them are there? what browser they are using? where have they come from? what are their host addresses and host names? and exactly what pages they have read? all in detail? In this article we build an ASP.NET application to do exactly that.
    9 times | category: [NET]
    Professional ASP.NET : Exposing Web Services
    ON: 2007-07-03 12:13:33
    This is the complete online chapter 'Exposing Web Services' from 'Professional ASP.NET' by Wrox Press. The chapter provides in depth information about creating and consuming Web Services using ASP.NET.
    11 times | category: [NET]
    A Fast-Track Guide to ASP.NET
    ON: 2007-07-03 12:04:43
    A Sample Chapter from Professional ASP.NET. Covers Installing .NET, Creating ASP.NET Applications in Visual Studio.NET, The difference between ASP.NET Different and ASP, Web forms, Server Control, Code and Content Separation, and more
    13 times | category: [NET]
    Sending E-Mails using ASP.NET (Part I)
    ON: 2007-07-03 11:52:34
    In part I of this tutorial, learn how to send simple e-mails (both text and HTML) using ASP.NET.
    12 times | category: [NET]
    this:4/5 25records  total:110    Start  Previous  Next  Last    goto:

    Category

      NET (110)