| Thread | Last Post | Replies |
|
| AutoEventWireUp Problem | 16 Nov 2005 15:59 GMT | 1 |
I am using Page_Error event in my aspx page to generate an error. Below is my code in my Page_Error event: private void Page_Error(object sender,System.EventArgs e) {
|
| Accessing the values of textboxes/labels within a function | 16 Nov 2005 04:41 GMT | 2 |
This is probably a very simple thing i am missing but i would be grateful for some help. I have a vb class file that i am trying to compile into a dll. The class contains a function that needs to reference the values of
|
| Hiding a TreeView's root node | 16 Nov 2005 02:38 GMT | 2 |
What is the best (if there is such) way to hide a tree view's root node? The RootNodeStyle property lacks a "visibility" property, so I can either assign a CssClass="Hidden", which translates to display:none or override the render method to manually do it, but I was curious if ...
|
| CreateUserWizard | 15 Nov 2005 16:24 GMT | 1 |
I needed to add an additional TextBox control on the “Set Up for your new account:” step of the CreateUserWizard control. So I selected “Customize Create User Step” which created source for the create user step and I added my TextBox. However, in the CreateUserWizzard event ...
|
| Retrieve GridView column header text on sort | 15 Nov 2005 13:12 GMT | 2 |
How do I programmatically retrieve GridView column header text on a BoundField when the user click on the header sort button? I know about the GridView columns collection, but how do I get the column id that corresponds with the sort button that the user clicked on?
|
| FtpWebRequest UploadFile | 15 Nov 2005 13:09 GMT | 5 |
I posted the WebClient versions in this Newsgroups. The FtpWebRequest DownloadFile version is ... private byte[] byWork = new byte[2047] ; private int iWork ;
|
| Datagrid paging I lose my sort | 14 Nov 2005 15:06 GMT | 4 |
I have a ds from sql, datagrid has sorting true, 3 databound and 1 template column sort expression are the data values Does a sort and then I page to second pageand I lose the sort. How can I sort the data and then page the results without losing the sort. Also is there a way ...
|
| Coloring Calendar !!! | 13 Nov 2005 23:38 GMT | 1 |
I am struggling with somenthing that might be a little too advanced (for me). Thanks for any help in advance. I have a database table that contains reservations for apartments, the table structure is as follow:
|
| onclient click and validators | 12 Nov 2005 15:36 GMT | 2 |
It seems that the onclientclick event occurs before clientside validation, how can i make validation occur before the onclientclick?
|
| WebCLient | 12 Nov 2005 12:55 GMT | 7 |
Is it possible to use WebClient.DownloadFile and WebClient.UploadFile to a FTP server that requires a user name and password? If yes, how is the authentication information passed to the server? What was the source of your information?
|
| createuserwizard refuese to add users due to password | 12 Nov 2005 04:32 GMT | 5 |
I am using microsoft web developer express beta a to try our the new features of asp.net 2.0. When working with the the createuserwizard control, I found it always showed a "select a different password" message when I try to add a user. The passwordregularexpression property is ...
|
| LoadControl and Multiple IDs in UserControls Error | 12 Nov 2005 01:58 GMT | 1 |
I have a usercontrol to load dynamically into a webform. In the usercontrol there is a textbox. I need to load 2 instants of the same usercontrol into the form. When a command button, which resides on the form container, is clicked. The
|
| Newbie Listbox | 12 Nov 2005 01:48 GMT | 4 |
I've set up two listboxes with script to move items back and forth, along with a button to submit. However, when I do sumit, the code behind sees zero items in my second (starts empty) listbox. I figure I'm missing something obvious. Can anybody tell me what it might be?
|
| conditional RequiredFieldValidator | 11 Nov 2005 22:51 GMT | 1 |
I have a TextBox control that needs to have a value only if a drop down box on the same page has a certain value selected. Is it possible to achieve this using RequiredFieldValidator for the TextBox and having EnableClientScript = true (without a post)?
|
| Retrieve Datagrid Element Index by Name | 11 Nov 2005 18:37 GMT | 3 |
I have two datagrids within one form and I need to do some client-side validation on the second grid when the user changes the value in drop down list which is a control in the second grid. For performance reasons I want javascript to loop through only the second grid when the ...
|