| Thread | Last Post | Replies |
|
| Image on a button | 25 Nov 2004 15:35 GMT | 2 |
In html I can create a button control that shows an image rather than text through the use of button tags: <button><img src="image.jpg"></button> I want to create the same type of control in ASP.NET. I don't want to
|
| Validator Question | 25 Nov 2004 14:48 GMT | 3 |
Validating an email like code@code.com with expression :- ValidationExpression="^[\w-]+@[\w-]+\.(com|net|org|edu|mil)$" About if i want to validate code@code.com.au Any ideas?
|
| Use DataGrid To Add New Records | 25 Nov 2004 00:21 GMT | 12 |
Hello to all, I've seen examples of how to do this and none of them apply to my situation. I have a datagrid that remains hidden until the user selects the add new button. I then hide all the controls on the page, make the datagrid visible and here is where I'm stuck. What I want ...
|
| MS_POSITIONING="flowlayout" | 24 Nov 2004 14:12 GMT | 34 |
I'm just wondering about something. I have been using gridlayout for my project, but was recently told why flowlayout would be best (for my project anyway). So, I went into the HTML and changed my MS_POSITIONING to flowlayout, but the auto sizes, locations, and positions are still ...
|
| How to Add CommandEventHandler Dynamically AND CONDITIONALLY! | 24 Nov 2004 13:59 GMT | 1 |
The body of literature in MS-Press and in this Newsgroup provides numerous examples as to how to add event handlers dynamically by means of delegates, namely: private void Page_Load (o,e)
|
| Format Hyperlink in DataGrid | 24 Nov 2004 08:00 GMT | 7 |
I'd like to format a hyperlink column in datagrid 1. Without underline, and 2. Change color on mouseover Are there any format settings for that or is code required.
|
| TextBox Can Grow/Shrink? | 23 Nov 2004 22:04 GMT | 2 |
Is there any way to make webform TextBox control have Can Grow/Shrink behavior like report textbox controls? Thanks. Alan
|
| How would one make programmatically defined web controls persistant? | 23 Nov 2004 21:03 GMT | 1 |
Greetings. I have created a good number of controls programmatically, but when I try to retrieve the values of these controls after filling them, and clicking the "process" button, the controls do no exist. How would I make the controls (and their values) persist? TIA.
|
| TextArea Length ??? | 23 Nov 2004 20:41 GMT | 2 |
I am using Textarea type.I want to set maximum length to the textarea. I am using following code for the same,but it is not working, <textarea name="txtDescription" cols=10 rows=3 axlength=50></textarea> <asp:TextBox Font-Names="verdana" Runat="server" ID="tforumtext"
|
| Check Max Length | 23 Nov 2004 20:40 GMT | 2 |
Is there a asp.net validator control that validates the length of the text being entered or does everyone just write jscript for this?
|
| help on field length validation using RangeValidator | 23 Nov 2004 20:31 GMT | 3 |
On page 17 of module 7 ("Validating user input") of the document called "Developping Microsoft ASP.NET web applications using Visual Studio.NET" which is given to students who attend official training sessions on the subject, I've read subsequent characteristics concerning the ...
|
| Free after new ? Garbage collector ? | 23 Nov 2004 19:17 GMT | 6 |
I can see in many books that we not often use the .Free method after creating an object For example: Dim cmdListe as new SqlCOmmand
|
| Datalist: limit the iterations | 23 Nov 2004 16:55 GMT | 2 |
Just wondering if there is some way to make the Datalist webcontrol, only iterate a prespecified number of times? Like setting a property (MaxRows perhaps!?).
|
| DataList Question | 23 Nov 2004 16:17 GMT | 1 |
is it possible for a datalist to have a datareader as its source instead of datasets? thanks a million! --A
|
| proper way to encode URL for image control | 23 Nov 2004 16:03 GMT | 2 |
I have a page with an image control and I am trying to set the source to the image file name "/images/products/image #45-7 picture.jpg" I have tried setting the name directly and with URLEncode. In both cases, the image cannot be found. What am I doing wrong?
|