| Thread | Last Post | Replies |
|
| Maintaining variable values in the aspx form | 27 Mar 2004 03:29 GMT | 1 |
I have 2 controls on the form one id drop down list and the other is button The OnSelectedIndex change event handler sets the value of a class variable to some integer.
|
| Removing dynamic items from dropdownlist | 26 Mar 2004 14:41 GMT | 3 |
I've created a control inheriting from dropdownlist. What I need is a RemoveDynamicItems method that would remove only list items that were added programatically. Keeping all list items existing explicitly in the designer (aspx file). Any ideas?
|
| Validation controls doesn't fire on dynamically created HtmlForms | 26 Mar 2004 06:37 GMT | 1 |
I have created one base class (which derive from System.Web.UI.Page class) from which all my web pages will derive. In this class I override the OnInit method and create a HtmlForm on the fly: --------------------------------------------------------------------
|
| Overwriting the "href='javascript:__doPostBack........" in a LinkButton | 26 Mar 2004 05:11 GMT | 3 |
I'm building a custom LinkButton control that will confirm a deletion before processing it. I've tried a few different things, some partially successful, and I did find someone who had a script that does this (though I didn't like
|
| DropDownList BorderColor not working !!? | 26 Mar 2004 00:44 GMT | 1 |
I've spent the last 2 days searching the Net and Knowledge base for a "working" example of how to change the border properties of a DropDownList box. Can anyone tell me WHY ! Microsoft would miss out such a major thing like this ? No examples I have tried actually work, even ...
|
| i cant center-align my control in table cell with netscape and mozilla | 26 Mar 2004 00:15 GMT | 1 |
i made a composite control than i craated a table with a cell and put my control into cell and i set alignement of the cell to center...the problem is that IE is showing my control in center of the cell, but mozilla and netscape
|
| user control stylesheets | 26 Mar 2004 00:04 GMT | 1 |
I have an asp .net page which includes several custom user controls. Each user control has its own template (.ascx file) Now, I want my graphical people to be able to add a link to a stylesheet file on top of the template file.
|
| How to resize custom control in designtime | 25 Mar 2004 23:57 GMT | 1 |
I created custom control that inherits from System.Web.UI.WebControls.WebControl and implements INamingContainer. But I cannot resize this custom control when I use it in my other project.
|
| dynamic creation of user controls | 25 Mar 2004 23:50 GMT | 1 |
In the page_onInit sub of my page, I'm adding user controls dynamically using following code : newControl = page.LoadControl("~/modules/footer.ascx") page.controls.add(newControl)
|
| Server Control Design-Time Image | 25 Mar 2004 17:01 GMT | 1 |
I'm attempting to create a Designer for a Custom Server Control that I've designed. It doesn't have any interactivity, but I'm trying to spruce it up a bit by adding an image with my company logo, etc. to the design-time rendering. I've done quite a bit of research and have found ...
|
| Adding a style to HtmlSelect | 25 Mar 2004 08:12 GMT | 4 |
How can a style, on an HtmlSelect obejct, be set in code? I tryed: HtmlSelect s = new HtmlSelect(); s.Style = "width:75px";
|
| Dynamically created Server Controls and page postback | 24 Mar 2004 11:56 GMT | 2 |
I have a page with button and dropdownlist i want to select a number from the dropdownlist so when the page postback it'll create a number of textbox according to the number within the dropdownlist I successfully did that but i have a problem when i write text within the textboxes ...
|
| Images in webcontrol | 24 Mar 2004 08:32 GMT | 2 |
I have made an webcontrol with images stored in an database. I have several subfolders importing the webcontrol. Now the images are not loaded wel because of the place of the webcontrol. Can i chnage the tag below in the code behind place. '<td id="Cel3" class="Welcom" ...
|
| ControlBuilder Saga -- and plea for help! | 23 Mar 2004 02:12 GMT | 8 |
I'm continuing to wrestle with getting my custom control to recognize inner property tags that look like this: <DaysSelected DataSource="a" DataMember="b" DataField="c" /> This tag is intended to initialize a property in my control that is of type DataInterface. The
|
| ChildProperties | 22 Mar 2004 20:46 GMT | 5 |
G'day All, Looking at the documentation, it looks like what I'm trying to do is possible, but I can't get it to work. Any suggestions would be greatful. I'm trying to make a server control, so the calling aspx code will look
|