| Thread | Last Post | Replies |
|
| How to pass parameters to a user control | 18 Jun 2004 05:53 GMT | 1 |
I'm calling some custom made user controls from within my .aspx web page using newControl = Page.LoadControl("myControl.ascx") Page.Controls.Add(newControl)
|
| iterate viewstate | 18 Jun 2004 01:08 GMT | 1 |
Hello Group, Can I iterate through the viewstate collection corresponding to a page and if so, how do i go abt it? Any help would be great!!
|
| ImageButton Rendering? | 18 Jun 2004 00:09 GMT | 1 |
I have an ImageButton that renders this HTML: <input type="image" name="Send" id="Send" src="send.gif" border="0" />
|
| Dynamic Template Column - retaining value on postback | 17 Jun 2004 23:57 GMT | 1 |
I am adding dynamic template columns to a datagrid. The template column contains a textbox which the user can edit. When I am rendering it initially, the text in the textbox is bound to a column in the dataset. Everything works fine till this point. After the user makes changes to ...
|
| Appending data to an excel cell using .NET | 17 Jun 2004 16:11 GMT | 1 |
I am creating an excel spreadsheet using .NET and I need to append some data to a cell. Using range("A1").value = "HELLO" will overwrite what is in the cell. Is there a way to append information Thanks
|
| Create Control Completely Programmatically? | 17 Jun 2004 07:14 GMT | 3 |
I want to make a custom ASP.NET control (internally made up of a DIV with a table and some elements) completely in code. I do not want to make an ascx, I just want to make a .cs that I can instance from my ASP.NET page, add it to the Page controls collection, and have it
|
| Pop-up?message box? | 17 Jun 2004 00:14 GMT | 2 |
What is the best way to display pop-up messages, i.e. Confirmation, etc.? I'm using vb in asp.net. I've read another posting on the 'confirmation' subject but am a little unclear. I'd like to confirm a delete operation using a pop-up. On button, once clicked, goes straight to the ...
|
| radiobuttonlist | 16 Jun 2004 20:11 GMT | 1 |
When I databind an asp radiolistbutton to a datareader the resulting list always displays one less record than is returned by the query. Also any query returning only 1 row displays nothing after binding. Can anyone tell me why?? Thanks!
|
| ASPX standard validation failing for Mozilla and Opera web browsers | 16 Jun 2004 17:41 GMT | 1 |
I'm using Windows 2K, .NET 1.1, and Visual Studio .NET. In my ASPX app I use standard validators like RequiredFieldValidator. The validators work just fine for IE 6.0. They also work in a very simple ASPX Web app
|
| Calendar Control Question | 16 Jun 2004 15:47 GMT | 1 |
I'm having trouble with the Calendar Class. I'm setting it's selected date in the page_load event, which is being done. The but control doesn't then display the month corresponding to it's selected date, rather it just displays the current month instead. If I surf the control to ...
|
| Javascript error is stopping __doPostBack working | 16 Jun 2004 11:13 GMT | 1 |
Postback suddenly stopped working on my web page, where previous it had been working fine. The error message "Expected ';' on line number 380" is shown to occur during page load, which I found by changing the 'SymError' function as below: <script language="JavaScript"> <!--
|
| drop down list | 16 Jun 2004 02:59 GMT | 1 |
I've searched postings, etc. need help on dropdownlist. Can you make the item name equal to more than one data field. I.e. in the example below I'd liek to make the viewable text USER_FNAME USER_LNAME. I've tried to add like: ddusernames.DataTextField = ( "USER_FNAME" ) & " " & ( ...
|
| Pivot table control | 15 Jun 2004 21:23 GMT | 1 |
does anyone know some handy pivot table server controls? I came across Chart FX OLAP (including advanced pivot functionality), but the license costs are about €3000 per server - which is way too much. Then there are the MS Office Web Controls; unfortunately these are ActiveX ...
|
| Newbie ValidationSummary Control Question | 15 Jun 2004 20:31 GMT | 2 |
My apologies if this is an ignorant question. I am into my third week with .NET... I have placed validators on my form controls, and have placed a ValidationSummary control at the top of my aspx. The VS control is below a
|
| Check existence of value in drop down list | 15 Jun 2004 18:37 GMT | 1 |
Is there a way to check and see if a value exists in a drop down list? I want to check and see if the value "No Status" is in a drop down list, and if it isn't, then I want to add it. I know the syntax to add it to the drop down list, but am not sure if there is a way to check if ...
|