| Thread | Last Post | Replies |
|
| Finding item in dropdownlist | 22 Jan 2007 08:25 GMT | 2 |
When initializing form (form load) I have lstRadiator.Items.FindByValue("5").Selected = True So when the page is shown in the browser, why doesn't it show option value #5 on the list? It just keep showing the first item ("999")...?
|
| help!! can't open visual studio 2003 web project | 22 Jan 2007 07:43 GMT | 2 |
hi.. using windows xp sp2 .. when i tried to open visual studio 2003 web project i got: the web server reported the following error when attempting to create or open the web project located at the following url
|
| dataset question | 22 Jan 2007 07:12 GMT | 2 |
I am a newbie in vb.net 2005. Is it possible to do a Group By in a dataset? thanks E.
|
| Wizard Recreates Page? | 22 Jan 2007 06:19 GMT | 1 |
I'm running into a weird problem debugging an ASPX page that contains a Wizard. The problem is that I need to access the state of a control (e.g., the selection status of CheckBoxList items) after clicking Next to take me away from the WizardStep where the control is located. What ...
|
| run a asp.net 2.0 local website | 22 Jan 2007 06:06 GMT | 2 |
Since moving to Visual Studio 2005, I cannot open my localhost sites within internat explorer unless I open Visual Studio, open the project, run the site in debug mode, which starts the asp developer server. Why is this, and what can I do to open my localhost sites without ...
|
| post an html form onto asp.net | 22 Jan 2007 05:42 GMT | 6 |
I have an html form that posts onto an asp.net page (vs2005). The form header is as follows: <form action="thankyou.aspx" method="post">. In a table i have the fields <td><input id="email" type="text" runat="server" /></td> and a submit button.
|
| Programmatically changing value of a control within a template | 22 Jan 2007 05:38 GMT | 2 |
I'd like to use the ItemInserting event to check (and perhaps append) a value before inserting it into my database. But, I don't know how to get a handle on the control. I know I can't just use "textbox1" to reference it. Is there a fully qualified name I should be using?
|
| Error 403 when using Global.asax with VS 2005 | 21 Jan 2007 22:47 GMT | 4 |
I've created a simple C# web services project using Visual Studio 2005. My service compiles and runs correctly when called by remote clients. I'm able to step through the service in the debugger unless I add a Global.asax file. When I do that and then try to run the debugger I ...
|
| How to build role based app? | 21 Jan 2007 21:57 GMT | 1 |
I'm in the concept stage of putting together a web application. Certain featues will be available only if the person has been given access. This is based on their particular subscription. I can create database tables that have an entry for each user and the features they
|
| "multiple" forms and validation | 21 Jan 2007 20:22 GMT | 1 |
I have a form which contains two different groupings of controls and buttons. If it were asp I would post to separate processing pages. My code works fine except for the validation. I need to disable the validation for some controls depending on which button is pressed. The ...
|
| Gridview and User Control | 21 Jan 2007 19:49 GMT | 1 |
I use a user control within a gridview Something like this <asp:GridView DataSourceID="myDatasource" ID="gvList" runat="server"> <Columns>
|
| asp.NET MASTER PAGES QUESTION | 21 Jan 2007 18:17 GMT | 6 |
I have build a header and footer control which I want to add to my master page, so in essence I want the header, a contact placeholder and a footer. This is something I used to do with vs2003 all the time and never had any problems.
|
| How to Add Element between <Head> tags | 21 Jan 2007 17:02 GMT | 2 |
How can I add the following element to the <Head> section of every page? <link href="Styles/main.css" type="text/css" rel="stylesheet"> I would like to do this in my Page base class (in the overridden Render method perhaps?) rather than adding the tag to each page.
|
| Dynamically added controls | 21 Jan 2007 15:35 GMT | 5 |
I have a page with mixture of static and dynamically added controls is there any way of controlling the order which they are added to the page. My submit button (statically added) appears before some textboxes (dynamically added). I know I could move it around with CSS but I want ...
|
| Panel | 21 Jan 2007 14:21 GMT | 1 |
A Form has 2 Panels - 'pnlDataEntry' & 'pnlSummary'. 'pnlDataEntry' houses a table with many TextBoxes & a Button (to submit the Form). When the Form is posted, the data in the TextBoxes are fed in a SQL Server DB table.
|