Search Results

2
votes

Access Global .resx file in ASP.Net View Page

<%= Resources.<ResourceName>.<Property> %> …
0
votes

How do you tell IIS 6 to set the .NET version to 2.0 (not 1.1) When New sites are created?

I believe all you have to do is change the default website's version to 2.0. …
1
vote

Best way to implement mutliple Default Buttons on a ASP.NET Webform

Capture the enter key press for each area of the screen and then fire the corresponding button's click even. …
0
votes

Charting in web-based applications

We have used Telerik's RadChart and MSSQL Reporting Services. …
3
votes

Poll: ASP.Net Data Access Methodologies

I vote for LLBLGen …
1
vote

What can cause an ASP.NET worker process to be recycled?

The worker process is probably cycling. http://www.lattimore.id.au/2006/06/03/iis-dropping-sessions/ …
0
votes

At which point in the lifecycle does GetConnectionInterface get called?

According to this document, it looks like Load. http://msdn.microsoft.com/en-us/library/ms366536.aspx …
0
votes

Should I store a database ID field in ViewState?

I personally am very leery about putting anything in the session. Too many times our worker processes have cycled and we lost our session state. As you described your problem, I would pu …