Modules
Hot Links
Login
Nickname

Password

Don't have an account yet? You can create one. As a registered user you have some advantages like theme manager, comments configuration and post comments with your name.
Who's Online
There are currently, 4 guest(s) and 0 member(s) that are online.

You are Anonymous user. You can register for free by clicking here

Update for 7/20/2004



PRB: ASP/ODBC/SQL Server Error 0x80040E4D "Login Failed for User '(Null)'"

(307002) - If you try to use an ODBC Data Source Name (DSN) to open an ActiveX Data Objects (ADO) connection to a SQL Server database from an Active Server Pages (ASP) page, you may receive the following error message: Microsoft OLE DB Provider for ODBC Drivers...


PRB: 80004005 Unspecified Error When Passing Disconnected Recordset from MTS to ASP

(237536) - When passing a disconnected ActiveX Date Objects (ADO) Recordset from a Component Object Model (COM) component inside a Microsoft Transaction Server (MTS) Server Package/COM+ Application to Active Server Pages (ASP), you may receive one of the...


PRB: Returning a UDT from a VB COM Object Brings an Error

(224422) - When you return a user-defined data type (UDT) from a Visual Basic COM object, you might get one of the following error messages: Microsoft VBScript runtime error '800a01a8' Object required -or- Response object error 'ASP 0106 : 80020005' Type...


HOWTO: Debug InProc COM Components Inside IIS Using WINDBG

(192754) - This article explains how to use WinDbg in case of an Active Server Pages (ASP) 'ASP0115 Access Violation' error during the execution of a custom component that is written in Visual C++ or Visual Basic. You can use WinDbg to further debug the...


INFO: ASP Requires Session State to Maintain Static Cookies

(184574) - Active Server Pages (ASP) uses HTTP cookies to maintain session state. Under certain conditions, the value of these session cookies may change. This article describes conditions under which session cookies are generated and how to ensure that static...


PRB: 80004005 ConnectionOpen (CreateFile()) Error Accessing SQL

(175671) - When you try to open a connection to a Microsoft SQL Server database from an Active Server Pages (ASP) page, you get the following error: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC SQL Server...


HOW TO: Declare an Array at Application Level Scope in Active Server Pages

(165293) - In developing a Web Application, you may want to declare a table of data for use by one or more pages at application level scope. This article demonstrates how to declare, populate, and reference an array that has been declared at application level...


DOC: Values for Scripting Object Constants Defined

(163009) - The version of VBScript (VBS) provided with Active Server Pages currently does not have access to the values of constants defined by the Scripting object. As a result, you must provide a definition of the constants you wish to use in your scripts....


HOW TO: Use Response Redirect in a Server Script

(159402) - The Redirect method of the Response object operates by sending a header to the client. This header causes the client to look to another URL location specified in the header. Because a header must come at the beginning of a document, it is not possible...


How To Install an Assembly into the Global Assembly Cache in Visual C# .NET

(815808) - This article describes how to generate a strong name for an assembly, and how to install a DLL file in the Global Assembly Cache (GAC). With the GAC, you can share assemblies across many applications. The GAC is automatically installed with the .NET...


How To Configure an ASP.NET Application for a Delegation Scenario

(810572) - This step-by-step article describes how to configure Internet Information Services (IIS) and Microsoft Active Directory required for delegation of ASP.NET applications. Delegation is the next step after impersonation. Delegation supports your ability...


How To Debug Client-Side Script in Visual С# .NET

(816173) - This step-by-step article describes how to debug client-side script in a Microsoft ASP.NET application by using Visual С# .NET and the Microsoft Script Debugger. Visual С# .NET provides a number of new debugging features that enable you to more easily...


How To Restrict Specific Users from Gaining Access to Specified Web Resources

(815151) - This step-by-step article describes how to restrict specific users from gaining access to specified Web resources. Web applications that are based on ASP.NET provide many ways for users to be authenticated and authorized to gain access to resources....


How To Deploy an ASP.NET Web Application Using Xcopy Deployment

(326355) - This article describes how to use the MS-DOS Xcopy command to deploy a Microsoft ASP.NET Web Application. What Is Xcopy Deployment? Xcopy deployment describes deployment in ASP.NET where you use the drag-and-drop feature in Microsoft Windows Explorer,...


HOW TO: Create An IAuthenticationModule by Using Visual C# .NET

(318786) - This step-by-step article demonstrates how to use Visual C# .NET to create an implementation of an IAuthenticationModule that performs Basic authentication. This article demonstrates how to create, deploy, configure, and test the authentication...


How To Dynamically Add Nodes to a TreeView WebBrowser Control by Using Visual Basic .NET

(319441) - This step-by-step article demonstrates how to add multiple levels of nodes to a Microsoft Internet Explorer TreeView WebBrowser control by using a DataSet object that includes multiple tables. This article also demonstrates three ways to optimize how...


How To Install an Assembly in the Global Assembly Cache in Visual Basic .NET

(315682) - This article describes how to generate a strong name for an assembly and to install a .dll file in the Global Assembly Cache. The Global Assembly Cache (GAC) enables you to share assemblies across numerous applications. The GAC is automatically...


How To Upload a File to a Web Server in ASP.NET by Using Visual C# .NET

(323246) - This step-by-step article describes how to upload a file to a Web server by using Visual C# .NET. In this article, you create a Microsoft ASP.NET file (WebForm1.aspx) and its related code-behind file (WebForm1.aspx.cs) to upload files to a directory...


How To Implement Nested Web User Controls in ASP.NET by Using Visual Basic .NET

(319100) - This step-by-step article demonstrates how to implement nested Web user controls in an ASP.NET application. The concepts are basically the same as when you create Web user controls to include in an .aspx page or in another Web user control, which is...


How To Create an ASP.NET HTTP Handler by Using Visual Basic .NET

(307997) - This step-by-step article demonstrates how to use Microsoft Visual Basic .NET to create a simple, custom HTTP handler. This article demonstrates how to create, deploy, and configure the handler. Implement the Handler Start Microsoft Visual Studio...


How To Create an ASP.NET HTTP Module Using Visual C# .NET

(307996) - This step-by-step article demonstrates how to use Visual C# .NET to create a simple, custom HTTP module. This article demonstrates how to create, deploy, and configure the module, as well as how to hook up an event for the module in the Global.asax...


How To Use Response.Redirect in ASP.NET with Visual C# .NET

(307903) - This article demonstrates how to use the Redirect method of the HttpResponse class in ASP.NET applications to redirect a user to another URL. Requirements The following list outlines the recommended hardware, software, network infrastructure, and...


How To Perform Fragment Caching in ASP.NET by Using Visual Basic .NET

(308645) - This article demonstrates how to implement fragment caching in ASP.NET. Fragment caching does not actually cache a Web Form's code fragments directly; fragment caching refers to the caching of individual user controls (.ascx) within a Web Form. Each...


How To Control Page Output Caching in ASP.NET by Using Visual Basic .NET

(308516) - This article demonstrates how to use the @ OutputCache directive to control page output caching in ASP.NET with Visual Basic .NET. You can use this technique to cache your site's most frequently accessed pages, which can substantially increase your...


How To Create an ASP.NET Application from Multiple Projects for Team Development

(307467) - This article describes how to make multiple ASP.NET projects participate in the same Web application. You may find it useful to separate a large Web application project into multiple projects for team development of ASP.NET Web applications in...


How To Perform Fragment Caching in ASP.NET by Using Visual C# .NET

(308378) - This article demonstrates how to implement fragment caching in ASP.NET. Fragment caching does not actually cache a Web Form's code fragments directly; fragment caching refers to the caching of individual user controls (.ascx) within a Web Form. Each...


How To Control Page Output Caching in ASP.NET by Using Visual C# .NET

(308375) - This article demonstrates how to use the @ OutputCache directive to control page output caching in ASP.NET with Visual C# .NET. You can use this technique to cache your site's most frequently accessed pages, which can substantially increase your Web...


How To Implement Role-Based Security with Forms-Based Authentication in Your ASP.NET Application by Using Visual Basic .NET

(306238) - This article describes how to implement role-based security in an ASP.NET application that implements forms-based authentication using Visual Basic .NET. Requirements This article assumes that you have already implemented forms-based authentication on...


How To Implement Forms-Based Authentication in Your ASP.NET Application by Using Visual Basic .NET

(308157) - This article demonstrates how to implement forms-based authentication by using a database to store the users. Requirements The following list outlines the recommended hardware, software, network infrastructure, and service packs that you need:...


How To Create Custom Error Reporting Pages in ASP.NET Using Visual Basic .NET

(308132) - This article describes how to use Visual Basic .NET code to trap and respond to errors when they occur in ASP.NET. ASP.NET has improved the error handling options from traditional Microsoft Active Server Pages (ASP). In ASP.NET, you can handle errors...


How To Extend a Web Form Control to Work with the Validation Controls by Using Visual C# .NET

(310145) - This step-by-step article shows you how to extend the Calendar control for server-side validation. Not all Web form controls can be used in conjunction with the validation controls. In order to be used with the validation controls, the control must...


How To Display Hierarchical Data by Using Nested Repeater Controls and Visual C# .NET

(306154) - This article describes how to use nested Repeater controls to display hierarchical data. You can apply this concept to other list-bound controls. back to the top Bind to the Parent Table Start Microsoft Visual Studio .NET. On the File menu, point to...


How To Create a Custom ASP.NET Configuration Section Handler in Visual C# .NET

(309045) - This article describes how to use Visual C# .NET to create a custom configuration section handler for ASP.NET. Create the Configuration Section Handler and Its Components These steps demonstrate how to create the configuration section handler and its...


How To Use Database and ASP Sessions to Implement ASP Security

(299987) - This step-by-step procedure illustrates how to implement forms-based security for Active Server Pages (ASP) applications. You can use this mechanism when your application is secure, when you want to allow only authenticated users, and when the users...


How To Write Readable and Maintainable ASP Scripts

(299985) - This article provides some guidelines on how to write Active Server Pages (ASP) script that is easier to read and maintain. As your Web application grows more complex, it is not uncommon for ASP scripts to grow to hundreds of lines. If later you...


How To Use an XML Web Service by Using ASP.NET from an Office VBA Macro in Word or Excel

(307033) - This article demonstrates how to use an XML Web service using ASP.NET from a Visual Basic for Applications (VBA) macro in Word or Excel.


How To Create an ASP.NET HTTP Handler by Using Visual C# .NET

(308001) - This step-by-step article demonstrates how to use Visual C# .NET to create a simple, custom HTTP handler. This article demonstrates how to create, deploy, and configure the handler. back to the top http://support.microsoft.com/default.aspx?scid=kb;en-us;308001&Product=asp

How To Create an ASP.NET HTTP Module Using Visual Basic .NET

(308000) - This step-by-step article demonstrates how to use Visual Basic .NET to create a simple, custom HTTP module. This article demonstrates how to create, deploy, and configure the module, as well as how to hook up an event for the module in the Global.asax...


How To Deploy an ASP Application to Another Server by Using Internet Information Server

(299868) - This step-by-step procedure demonstrates how to copy an existing Active Server Pages (ASP) application from one computer to another computer. By the end of this article, you will be able to successfully deploy an existing, simple ASP application from...


How To Span a Transaction Across Multiple Active Server Pages

(299638) - This step-by-step procedure demonstrates how to use the @TRANSACTION directive so that a transaction spans across multiple Active Server Pages (ASP) pages. If you want to span a transaction across multiple ASP pages, you must use the @TRANSACTION...


How To Use Notepad to Create a Document in Active Server Pages

(301496) - These step-by-step instructions demonstrate how to use Notepad to create Active Server Pages (ASP) pages. This is not intended to be a guide on how to write ASP. How to Use Notepad to Create a Simple ASP Page From the Windows Start menu, point to...


How To Access Active Server Pages Intrinsic Objects Within a Visual Basic COM Component

(299634) - This step-by-step procedure demonstrates how to access Active Server Pages (ASP) intrinsic objects within a Microsoft Visual Basic Component Object Model (COM) component. Step-by-Step Example Create a new ActiveX DLL project in Visual Basic. From the...


How To Use Simple ASP Code to Password Protect Your ASP Pages

(301464) - This article demonstrates how to write simple Active Server Pages (ASP) code to restrict access with a logon page. The methods in this article are simplistic. For greater functionality or for stronger security, see the " References " section at the...


How To Build Your First ASP Web Application in Microsoft Active Server Pages

(301097) - This article describes how to get started with Active Server Pages (ASP) and is intended for novice and intermediate customers who are familiar with computer programming. Although prior experience with a Web development language such as HTML is...


How To Maintain HTTP State with Hidden Form Fields in Active Server Pages

(300105) - In certain situations, you may need to store data as you move through the Web pages of an Active Server Pages (ASP) application so that this information will be available to you in a later page, or so that you can keep track of the current state of a...


How To Create a Custom ASP Error Handling Page

(300043) - When an error occurs in server-side script, Active Server Pages (ASP) stops running the code and displays the error that is associated with the problem that it encountered. However, you may prefer to let the code continue to run despite the error and...


How To Use ASP to Generate a Rich Text Format (RTF) Document to Stream to Microsoft Word

(270906) - This article illustrates how you can generate Rich Text Format (RTF) files with ASP script and then stream those files to Microsoft Word. This technique provides an alternative to server-side Automation of Microsoft Word for run-time document...


PRB: "Script Time Out" Error in Active Server Pages (ASP)

(268364) - When you attempt to run an Active Server Pages (ASP) page, you may receive the following error message: Error Type: Active Server Pages, ASP 0113 (0x80004005) The maximum amount of time for a script to execute was exceeded. You can change this limit...


FIX: You cannot run multiple ASP.NET processes on Windows Server 2003

(812833) - Discusses an update that corrects a limitation of the .NET Framework. You cannot run ASP.NET in High isolation and you cannot run multiple ASP.NET processes at the same time. This update causes ASP.NET processes to run inside Dllhost.exe processes.


How To Create an Updateable Grid by Using the Visual InterDev 6.0 Grid DTC

(229672) - The nature of the Visual InterDev 6.0 Grid Design-Time Control (DTC) is that it is "read only." That is, it is designed to display information in a tabular format and provide navigation controls. However, the information displayed cannot be updated....





General Information

Site Map




Copyright © by General Information All Right Reserved.

Published on: 2005-10-06 (486 reads)

[ Go Back ]
home  |   topics   |   content   |   links   |   contact   |   login   |   search  |   sign up   |   privacy policy
General Information Technology News info-on-it.com © 2005