Forum: ASP.NET Mar 12th, 2008 |
| Replies: 4 Views: 1,258 ViewState is held in a hidden field within the rendered webpage, session state is held in the memory of the webserver. Each session has a unique id called a sessionid. The sessionid is given to the... |
Forum: ASP.NET Feb 22nd, 2008 |
| Replies: 24 Views: 3,652 You don't need IIS if you have Visual Studio 2005 Express Edition (any edition 2005+) It includes a web server. When you run the app from VS (F5 to debug, or Ctrl+F5 to run without debugger) it... |
Forum: ASP.NET Oct 9th, 2007 |
| Replies: 1 Views: 15,585 I'm not certain of what you require. But perhaps you need DBNull.Value this represents a null database value. For example you can comapare a value in a DataSet to DBNull.Value which returns true if... |
Forum: ASP.NET Feb 1st, 2007 |
| Replies: 9 Views: 4,119 No ASP.NET will automatically give them unique ID's, you just need a loop
for(int i = 0; i < 2; i++)
{
WebUserControl webug = (WebUserControl)Page.LoadControl("WebUserControl.ascx");
... |
Forum: ASP.NET Aug 5th, 2006 |
| Replies: 10 Views: 2,191 Oh well not the conventional method, but that's ok, normally you would change the code to fit the column names. But nevermind as long as they match that's the main thing.
As for the Username... |
Forum: ASP.NET Aug 3rd, 2006 |
| Replies: 3 Views: 1,315 Build Your Own ASP.NET Website Using C# & VB.NET
By Zak Ruvalcaba
Publisher: SitePoint
Pub Date: April 2004
Print ISBN-10: 0-9579218-6-1
Print ISBN-13: 978-0-9579218-6-3
I recommend... |