| Thread | Last Post | Replies |
|
| HTML ListBox and a .aspx page... | 31 Aug 2003 09:44 GMT | 1 |
In a .aspx page I have a HTML Select Control... a listbox and a aspx server control a button. using javascript I add items into it the list box as follows: var myNewOption = new Option("test1","test1");
|
| How to create a datagrid on the fly ? | 30 Aug 2003 22:38 GMT | 2 |
Any examples / pointers on how to render a datagrid on the fly in a asp.net page, based on dynamic parameters ? Thanks.
|
| poor performance with treeview control | 29 Aug 2003 05:54 GMT | 3 |
I impemented the treeview controll and it works correctly but it requires a lot of CPU time at the server. With aprox 50 nodes in the tree it takes about 2.5 seconds ( on a 2500MHz/512MByte machine ) to be built at the server. I tryed to databind an xml file as well as building up ...
|
| maintaining scroll position of a scrollable panel control during postbacks | 28 Aug 2003 17:48 GMT | 2 |
Hi forum i have a panel control which is scrollable.I have few server controls on the panel.the proble i am facing is during post back i have to maintain the scroll position of that panel control.
|
| Custom Validators... | 28 Aug 2003 16:13 GMT | 2 |
I have a radio button server side control and a text box server side control and an a Custom validator control placed on a .apsx page. I have set the ControlToValidate Property of the Custom Validator Control to the textbox and set the OnServerValidate method of the
|
| passing a string array to another page? | 28 Aug 2003 15:03 GMT | 1 |
How can I send a string array to another aspx page?
|
| Client Side Javascript | 28 Aug 2003 14:57 GMT | 2 |
I just posted a question, but decided to make it clearer...sorry about the re-post. I am developing an asp.net page with 3 server side asp controls (dropdownlist, textbox, button). I would like to capture the tab from
|
| Why do I get an error when I put inline code in a web control custom atribute? | 28 Aug 2003 07:22 GMT | 2 |
I have a control that takes an ID (short). In the html where the control is placed, when I put the following: <td> <cc2:logocontrol id="Logocontrol1"
|
| Sending dropdownlist items? | 28 Aug 2003 02:51 GMT | 1 |
How can I send dropdownlist items to an ascx file AND how can I get the dropdownlist items from outside of the ascx file :) thanksss...
|
| Panel Server Control... | 27 Aug 2003 23:38 GMT | 2 |
I have a Panel and I have created checkboxes dynamically and added it to the panel. The code is as below: foreach (...)
|
| Listbox.SelectedIndex command doesn't update! | 27 Aug 2003 22:24 GMT | 2 |
I have a listbox control which is populated from a database via a handler of it's onload event. After (or before, I've tried both) I bind the dataset to the listbox, I attempt to use mylistbox.Items.FindByValue("myvalue").Selected = True
|
| web user control with grid having command handler | 27 Aug 2003 19:27 GMT | 2 |
Is it possible to create a control that would have a data grid embedded, that would have some button columns causing some action ? When my grid does not have a button column all works
|
| Adding item/s to a dropdownlist | 27 Aug 2003 07:31 GMT | 1 |
I have a dropdownlist on a webform amongst other controls. One of the items in the dropdownlist is 'New Value'. If the user selects 'New Value', I want a web form of a precise size and modal too, to help the user create a new value and when the new entry is accepted (in the modal ...
|
| dynamic listItems - event NOT fired | 27 Aug 2003 06:26 GMT | 3 |
Though there are numerous posts on this issue , there are no answers at all to any of them !! My Situation is , I have a dropdownlist that gets populated on a button click event, this works fine but
|
| writing two textbox's text in one textbox | 27 Aug 2003 01:58 GMT | 1 |
I want to write Textbox1.text and Textbox2.text with between spaces into textbox3.text in the HTML window I mean textbox3.text = textbox1.text " " textbox2.text
|