0
votes
Performance penalty on putting classes in aspx and ascx codebehinds
Under the deployment scenario you have indicated:
When files / directories change:
penalty: recompilation to a new assembly of the all the aspx files in the affected directory …
2
votes
Does This ASP.NET Consultant Know What He’s Doing?
Asp.net sessions, if you're using the built-in providers, won't accidentally give you someone else's session. SomeProprietarySessionManagementLookup() is the likely culprit and is retu …
4
votes
How to get the asp.net login control to auto authenticate a previously authenticated user?
You need to Google for Forms Authentication in ASP.NET 2.0
You will need to set up your application (via …
1
vote
Reading the dynamically changed value of an HtmlInputHidden in ASP.NET
You ideally want to use the asp.net HiddenField control
<asp:HiddenField id="myHiddenField" runat="server" />
Then you will be able to read the value from th …
2
votes
What is the optimum limit for URL length? 100, 200+
A Url is path + querystring, and the linked article only talks about limiting the path. Therefore, if you're using asp.net, don't exceed a path of 260 characters. Less than 260 will always work, an …
7
votes
ASP.NET: How to access repeater generated form input elements?
Use the server control instead of making an input control runat=server
<asp:CheckBox id="whatever" runat="Server" />
When you set the value in your ItemData …
4
votes
LINQ to SQL - where does your DataContext live?
Dependency Injection.
We prefer to keep our business layer ignorant of web vs non-web scenario's. Instead, business logic layer objects take a DataContext reference in their constructor whi …
8
votes
Can I use commas in a URL?
I recall that Url Routing by default first checks to see if the file exists, and commas are not legal in filenames, which is parhaps why you are getting errors. IIS may have legacy code that aborts …
2
votes
ASP.NET Page Validation
You're not validating the dropdown list are you? You're validating the value a user selected. It's pretty much the same advice as the other post, since javascript or other tools can alter the html …
1
vote
Why is my asp:TreeView selected node reset when in an UpdatePanel?
From UpdatePanel Control Overview [asp.net]
Controls that Are Not C …
0
votes
Best way to receive file through webservice
Not a direct answer but you may also want to look into BITS - Background Intelligent Transfer Service [ …
1
vote
Which is fastest? Data retrieval…
the problem I have here is that I need it all, i just need it displayed seperatly...
The answer to your question is 1 query for 3000 rows is better than 6 queri …
1
vote
Keeping data in session vs. populate on postback
Your answer doesn't hint at the use of the data. Is it reference data? Is the user actively updating it? Is more than one user meant to have update access at any one time?
Without any bette …
5
votes
ASP.NET - Storing SQL Queries in Global Resource File?
Resource files are usually used for localization. But a string is just a string is just a string, and do you really want to be sending any old string in a resource file to your database?
I …
1
vote
Alternatives to using web.config to store settings (for complex solutions)
You could store the settings in any old Xml file and use the XmlSerializer to take your class and convert it to < - > from Xml. In another …
