Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > asp.net > april 2004 > threads for sunday april 11

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

ASP .NET on Win 2003 Standard + Domain Controller with Active Directory : Temporary folder-Access denied
Posted by Juleke at 4/11/2004 11:58:33 PM
Hello, For some test, I have setup one computer with Win 2003 Standard + IIS + Active Directory My problem is Access to the path "c:\windows\microsoft.NET\framework\v1.1.4322\temporary ASP.NET Files\...." is denied when I'm trying to use a .NEt application I have found on microsoft msdn...more >>


Submit doubt
Posted by Carlos Cruz at 4/11/2004 11:52:34 PM
Hi, Suposing that I've an aspx page with a <table> with 2 colums, the column on the left has a menu loaded from a database and the column on the right an ascx user control with a submit button. My question is... Do I need to reload the left cell menu each time the user clicks on the submit ...more >>

cookieless session state problem
Posted by alex at 4/11/2004 11:43:00 PM
when i bookmark a page in my app with a session id in the path, that session id doesn't get reset. It survives timeouts, browser and server restarts. I'm seeing this behaviour whether I use InProc mode or StateServer. I'm getting this on a remote server where I'm using InProc cookieless mode and ...more >>

File date as runtime...
Posted by EMW at 4/11/2004 9:27:25 PM
Hi, Is it possible to get the date on which the aspx file was created/last saved at runtime? rg, Eric ...more >>

Add control to a placeholder
Posted by Carlos Cruz at 4/11/2004 8:38:48 PM
hi, I want to add controls (hyperlinks) dynamically in code into a placeholder. I manage to add them but they appear in the same line and I want to show each hyperlink in a diferente line (like a left menu). How can I do this??? Thanks CC ...more >>

How to enable remote testing ?
Posted by Mensand DotNet at 4/11/2004 8:37:53 PM
Hi, I've written a webservice. The testingpage is real cool but it doesn;t allow me to test it on a different machine. It says something like only on local machine. How can i set it to also enable remote machines to test the webservice ? Greetings Andre ...more >>

ASP.NET on Win2K3
Posted by jester at 4/11/2004 8:16:04 PM
When creating an ASP.NET project on a Win2K3 machine, I get the following prompt <START_OF_PROMPT The default Web access mode for this project is set to file share but the project folder at 'http://localhost/myProj' cannot be opened with the path 'c:\inetpub\wwwroot\myProj'. The error returned w...more >>

Possible to get iis on Windows XP Home Edition?
Posted by soni29 NO[at]SPAM hotmail.com at 4/11/2004 4:19:18 PM
Hi, I'm taking a class right now at college where the prof. is showing us some projects done in MS .Net Framework, using ASP.Net and VB.Net, we're suppose to do one soon. I'm running MS Windows XP Home Edition at home but can not locate IIS on it, I need it for the .Net Framework, any ideas on...more >>



strange authentication problem...
Posted by Paul M at 4/11/2004 2:44:20 PM
hi there, i've got a website i created, that i've put onto my test server on the web. I have a login page, that when the user comes to it, it first pops up a windows authentication dialog box, and i dont know why? i click cancel on it and the page still works as normal. How can i remove t...more >>

DropDown List Default Selected Item
Posted by Kris Rockwell at 4/11/2004 2:25:13 PM
Hello (again), I have gotten the dropdown list functionality to work through a few tricks (probably not the most efficient, but it works) but I am not sure how to set the default selected value. I have tried setting various values to represent the default value with little success. Essentially...more >>

How do you place a string within a string? Please help
Posted by daveylongsox NO[at]SPAM hotmail.com at 4/11/2004 12:01:17 PM
I'm creating a HTML email using VB Script in asp.net. I am an amatuer programmer and require help with placing a string within a string: I would like my mail to generate a link to a specified page. The <a href> tag requires quotation marks and asp.net doesnt like this because it thinks that th...more >>

ASP.NET Forms Authentication
Posted by Gavin Stevens at 4/11/2004 9:41:03 AM
I'm trying to figure out the ASP.NET Forms Auth I have 3 or 4 pages i want to allow anonymous access to.. Then I have 5 or 6 pages I placed in another directory in the webproject. These I want to manually authenticate users to provide acess My project has 2 web.config files... the default file...more >>

Tough redirection question
Posted by dotnw NO[at]SPAM hotmail.com at 4/11/2004 9:13:42 AM
Hi, Is it possible to do a form POST and also redirect to a different url, using code behind? I don't think response.redirect will work because that doesn't post form data. I don't think server.transfer will work because that doesn't redirect to a different url. I don't think HttpWebReque...more >>

RaisePostBackEvent question
Posted by Karl Hungus at 4/11/2004 6:53:31 AM
how come RaisePostBackEvent doesn't work correctly if the IPostBackDataHandler isnt implemented. It seems that I must at least have: public bool LoadPostData(String postDataKey, NameValueCollection values) { return false; } public void RaisePostDataChangedEvent() { } In order fo...more >>

TextBox - MaxLength property
Posted by mg at 4/11/2004 6:31:03 AM
I have a MultiLine TextBox (WebForm - C#) with the MaxLength property = 1000 but am able to type in an unlimited number of characters. Is there a way to limit the number of characters that can be typed into this TextBox?...more >>

Repeater ItemCreated vs ItemDataBound
Posted by Kevin Hector at 4/11/2004 2:46:02 AM
Hi. Can anyone explain why, when setting the Text of a Label control in the ItemCreated event of a Repeater (example below), the Text value is NOT persisted to ViewState? I know this can be fixed by using the ItemDataBound event, but I don't understand why. here's a page snippet: <asp:Repeater...more >>

I am wondering how you would handle this.....
Posted by scorpion53061 at 4/11/2004 12:57:07 AM
I would like your thoughts and impressions of the events of today and ask how you would handle this or if I am wrong and this is "normal" behaviour for a web provider and IIS. I am normally a vb.net windows programmer but I needed to do some web work that involved web pages and data access. I ...more >>

Reusing DataReader
Posted by Thomas Scheiderich at 4/11/2004 12:20:15 AM
I have 2 dropdowns that are exactly the same and I don't want to re-read for each. Is there a way to do something like below where I read the data, bind to depCity1 and then bind to destCity2. I find that the second one always is blank. I assume this is because the DataReader is read-forw...more >>


DevelopmentNow Blog