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 > march 2006 > threads for saturday march 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 31

How to see depreciated methods
Posted by Amil at 3/11/2006 11:35:36 PM
When I converted my web app from 2003 to 2005, I know there are lots of methods I call that are depreciated (e.g. System.Net.Mail, ConfigurationSettings). Can I turn on something so that the compiler warns me about all of these? Amil ...more >>


Can run after publish
Posted by ad at 3/11/2006 10:18:34 PM
I have finished develop my WebApplication. When I publish my WebApplication by Publish Web Site to a web server, it can not run on the web server, with error message below. But if I copy my whole web application to server, it can run. How can I do? ----------------------------------------...more >>

it's really important thing to solve
Posted by uto at 3/11/2006 10:05:20 PM
it's really important thing to solve please give me some advice i made some usercontrol included some fuctions this fuction require some parameters liike currentpage , pageCount, and pageSize and then it attached into default.aspx like this <uc1:uc_pager ID="Uc_pager1" runa...more >>

Special directives for 1 cs file to refer to another
Posted by Adrian at 3/11/2006 9:25:00 PM
Hi , I am writing some codes in a codebehind cs file and I need to access another class in another cs file. How do I do that ? What special directives do I need ? Please advise. Thanks. Regards, Adrian ...more >>

Simple JavaScript question
Posted by Kevin S. Goff at 3/11/2006 9:19:32 PM
Hi....I realize this is a really basic question.... I have a webform (in VS.NET 2005). It has (among other things) a combobox and a command button. At the beginning, the command button is disabled....on the selectedindexchanged event of the combobox, I want to enable the command button ...more >>

referencing Document attributes
Posted by Tina at 3/11/2006 5:21:07 PM
How can I reference attributes of the Document from my codebehind file. Attributes such as Background, bgColor, leftmargin, text, etc. Thanks, T ...more >>

How can I get an existing Thread
Posted by Shawn at 3/11/2006 4:43:06 PM
Hi. I have two pages, page1.aspx and page2.aspx. In page1.aspx I start a new thread that starts a process that might take 1-2 minutes. I want to use page2.aspx to check the status of this thread. How can I retrieve the thread I started up in page1.aspx? I've noticed that the thread has a Ma...more >>

How do I delete "Edit" column in my GridView in VS 2005 webform?
Posted by Learner at 3/11/2006 4:38:24 PM
Hello, I have a GridView control on my webform. I can see the data in my GridView control but I don't see any option to hide or delete the Edit column in the control. I don't have to have any Edit, Delte, or Update functionality in my GridView. I just need to display the data thats all. ...more >>



ValidatorEnable doesn't?
Posted by Bill44077 at 3/11/2006 3:22:27 PM
Hi, I have a couple websites that use the ValidatorEnable(CompareValidator1, false) to disable the validator from firing on testing some conditions in js. My latest site is using masterpages so getting the control name is a little more complex since it gets it's name mangled. None the...more >>

Asp.net 2.0
Posted by barry at 3/11/2006 2:57:47 PM
I have just installed Visual Studio 2005 and would like to know if you are suppose to be able to execute asp.net from within VS or do you have to use Visual Web Developer. I do not find any templates in VS to create a web site. thanks ...more >>

asp:Label rendering as <span> in IE :(
Posted by garthb NO[at]SPAM gmail.com at 3/11/2006 2:27:42 PM
Hello, I have a site which I've been developing locally with VS2k3 Pro. I have some browsercap information in my web.config to help identify Firefox as an upscale browser. It works great locally. Labels render as labels and so on. However, when deploying the site onto a different server,...more >>

Changing page bgcolor from code (repost)
Posted by GaryDean at 3/11/2006 1:50:57 PM
In the original post I failed so indicate that I am using framework 1.1....... I need to be able to change the background color of a page from code. I found an answer to this question in another forum from Peter Huang that said that an id="bg" as follows... <body MS_POSITIONING="GridLayo...more >>

Changing Page bgColor from code
Posted by GaryDean at 3/11/2006 11:01:06 AM
I need to be able to change the background color of a page from code. I found an answer to this question in another forum from Peter Huang that said that an id="bg" as follows... <body MS_POSITIONING="GridLayout" runat="server" id="bg"> then we could do the following in our codebehind fi...more >>

Substitute Values in Column in Gridview
Posted by Wayne Wengert at 3/11/2006 10:14:52 AM
I have a Gridview bound to an SQLDataSource (see code below). The value of the "DayOfWeek" column is actually an integer where 0 = Daily, 1=Sunday, 2=Monday, etc. How can I change what is displayed in the column from values like 1or 2 to "Sunday", "Monday"? ============== Code =========...more >>

How to prohibit bypassing a required page?
Posted by antonyliu2002 NO[at]SPAM yahoo.com at 3/11/2006 10:04:35 AM
Let me try to make clear what my concern is. I think it is a pretty interesting one, which I think of while I am developing my web application. I have an authenticated/authorized web application. People have to login from http://mydomain.com/ to access the information on my site. For now,...more >>

odbc adapter syntax HELP make it do the update
Posted by cindy at 3/11/2006 7:44:12 AM
this is the call private void Page_Load(object sender, System.EventArgs e) { OdbcConnection connection = new OdbcConnection ("DSN=PFW52"); CreateDataAdapter(connection); } this is the code, no errors, but NO UPDATE I have to use ODBC I just need to update a field based on a key, EMBARASSE...more >>

Why calling Button_Click() behaves differently from really clicking the button?
Posted by charles at 3/11/2006 4:44:51 AM
Hi: In my page I need to re-start a thread. I put the code into a Button_Click(sender, e) handler. When I click the button, it works. Then I call this handler inside a timer's handler timer1_Elapsed(object sender, System.Timers.ElapsedEventArgs e). I can trace the code and see it really go th...more >>

Visual Studio
Posted by Progman at 3/11/2006 1:39:20 AM
I have Visual Studio 2005 Standard edition. Is ti the same thing as the Express edition or Standard is more? ...more >>

Change Virtual Directory Property
Posted by Just D. at 3/11/2006 12:48:22 AM
How can we change the property of one subdirectory of the Virtual Directory? One of the directories should be granted "Write". Should we delete this Virtual Directory to recreate it with the required property or there is some way to do that? What I see now is a poor documentation on the Int...more >>

How to rewirte URL from no extension to .aspx
Posted by baroque Chou at 3/11/2006 12:19:46 AM
e.g. http://yoursite/abc to http://yoursite/abc.aspx?? many many thanks ...more >>

input initial date into usercontrol
Posted by uto at 3/11/2006 12:00:00 AM
<uc1:uc_pager ID="Uc_pager1" runat="server" CurrentPage="<%=page%>" PageCount="<%=pageCount%>" PageSize="<%=pageSize%>" /> i'd like to input data into usercontrol when page loading but this <%= %> tag doe...more >>

Development Tools! Everyone!!
Posted by Adam J Knight at 3/11/2006 12:00:00 AM
Hi all, Just a quick enquiry to all gurus out there. And the general developer community out there.. At the moment my little toolkit for developing web applications consists of : 1) Dreamweaver 2) Visual Studio 2003 3) SQL Server 2000 4) MySql Unfortunately i don't get a lot of expo...more >>


DevelopmentNow Blog