3
votes
5answers
3k views
ASP.NET 2.0 Application on IIS 5 Resulting in Error (aspnet_wp.exe (PID: XXXX) stopped unexpectedly.)
After hosting an ASP.NET 2.0 web application on a windows 2000 server(IIS 5).
I was unable to browse the web site.
The following error message was displayed on the browser and three Event L …
4
votes
How do you bind an Enum to a DropDownList control in ASP.NET?
Use a Utility class to get a Dictionary from an Enum and then bind that to a bindable Control
public static class Utilities
{
public static Dictionary<int, string …
1
vote
ASP.NET 2.0 Application on IIS 5 Resulting in Error (aspnet_wp.exe (PID: XXXX) stopped unexpectedly.)
I discovered that when the web site folder was copied to the server it inherited the security permissions of the parent folder which only had permission for the Administrator, Administrators & …
1
vote
asp.net: difference between runat=”server” and server controls
The button represented by <asp:Button runat="server".../> will be converted to a web server control with a rich state model and different properties and methods which has more cl …
1
vote
Should I always call Page.IsValid in ASP.NET WebForms C#?
You can check the validity of a Page by checking the Page.IsValid property, your purpose to check the Page.IsValid might vary like
If you have Validators which has the EnableClie …
