Search Results

1
vote

ASP.NET Custom Controls - Alternatives to PostBack?

Store your object state in the session context: this will shift the burden of keeping state from the client to the server, which may be acceptable for small-scale intranet apps. F …
5
votes

Help needed for extending Asp.Net

The handling of app_offline.htm is hardcoded in the ASP.NET pipeline, and can't be modified: see CheckApplicationEnabled() in HttpRuntime.cs, where it throws a very non-co …
7
votes

Tools for converting from ASP to ASP.NET?

Even if there are tools to convert between classic ASP and ASP.NET, they're not going to generate very good results: the two environments are just too fundamentally different. A quick Google turns …
3
votes

Storing xml data in a cookie

Storing serialized data in a cookie is a very, very bad idea. Since users have complete control over cookie data, it's just too easy for them to use this mechanism to feed you malicious data. In ot …
1
vote

Catching exceptions within .aspx and .ascx pages

Using the global.asax Application_Error method, as described in How to create custom error reporting pages in ASP.NET by using Visual …
1
vote

enabling/disabling asp.net web service extension via script

Adding Web Service Extension Files Using Iisex …
2
votes

How do I setup remote debugging from scratch for an Asp.Net app

If you have unrestricted TCP/IP access to the remote location, this will be very easy (as in, 5 minutes tops to get it to work): see …
3
votes

Vb6 “Tag” property equivalent in ASP.Net?

No, there's no direct equivalent, but if you're using v3.5 of the Framework, you can add this functionality quite easily using an extension method. For example: Imports System.Runti …
1
vote

ASP.Net tab in IIS missing.

If you've had (or have...) VMware Server installed on this particular machine, the following steps will most likely fix the issue with minimal pain: Stop the IISAdmin service (and its …
4
votes

How to find out which account my ASP.NET code is running under?

To find out which NT account your app is running under at any given time, do something like (in VB.NET): Dim User = System.Security.Principal.WindowsIdentity.GetCurrent.User …
7
votes

Can I access session state from an HTTPModule?

HttpContext.Current.Session should Just Work, assuming your HTTP Module isn't handling any …