Three kinds of server controls

ASP.NET has solved the “spaghetti-code” problem described above with server controls. Server controls are tags that are understood by the server. There are three kinds of server controls: * HTML Server Controls – Traditional HTML tags * Web Server Controls – New ASP.NET tags * Validation Server Controls – For input validation

Continue Reading

Integrated Windows Authentication (IIS 6.0)

With Integrated Windows authentication (formerly called NTLM, and also known as Windows NT Challenge/Response authentication), the user name and password (credentials) are hashed before being sent across the network. When you enable Integrated Windows authentication, the client browser proves its knowledge of the password through a cryptographic exchange with your Web server, involving hashing.

Continue Reading
FILED UNDER: IIS

Win XP Pro and IIS 5.1 Issues with .net Framework 2.0

I installed the new beta of .net framework and my asp stopped responding. I don’t know what to look for and turn back on so that I can get asp to start working again. Has anyone else had this issue? Have you corrected it and how? From the command line 1) CD to the C:\Windows\Microsoft.Net\Framework\v1.14322 2) Type the command: aspnet_regiis -r This will install/apply the ASP.NET 1.1 script engine.

Continue Reading

Minimize Outlook 2002 to the Tray

*** Outlook 2003 has the capability to minimize to tray built in *** If you want to “tray” Outlook you need to create this registry key and set the value of MinToTray to 1. [HKEY_CURRENT_USER\Software\Microsoft\Office\10.0\Outlook\Preferences] “MinToTray”=dword:00000001 To start the registry editor, from the Start menu, Run dialog, enter regedit. That will open the registry editor. Browse down the tree until you get to Preferences under Outlook. On the right side of the screen, right click as choose New | DWORD, as shown in the screenshot. Name it MinToTray and change the value to 1 (right click on it after naming …

Continue Reading