all groups > asp.net building controls > october 2004 > threads for october 15 - 21, 2004
Filter by week: 1 2 3 4 5
Problem with Autopostback
Posted by le_mo_mo NO[at]SPAM yahoo.com at 10/21/2004 6:40:25 PM
Hi,
I have a set of Dynamic DropDownLists with AutoPostback. the problem I
have is that when I select the dropdown and the page refreshes the old
values in the text boxes disappear. Is there a way to preserve the
values?
Thanks,
Mo... more >>
How to use user control's property of DataTable type
Posted by IKdev at 10/21/2004 9:31:16 AM
I have a user control (not custom control) and want to use a public property
of it which is of DataTable type.
contol is used in the page in this manner:
<uc1:Mover id="MoverFFF" runat="server"
OriginalData='<%MyAssembly.MyClass.GetMyData("FFF")%>'>
I got error : "Cannot create an object of t... more >>
Help with making a control work . Please help :-(
Posted by Simon Harvey at 10/20/2004 4:44:12 PM
Hi everyone,
I'm having a problem with getting a control that I'm using to work.
I have a placeholder control sitting within a user control.
On certain occasions at runtime I create a Textbox control and add it to the
placeholder. This works well almost all the time.
Unfortunately ther... more >>
how to get selected values ( vb.net )
Posted by krzysiek at 10/20/2004 1:30:30 PM
hello,
i have several radiolists and checkboxlist that are generated dinamicly
based on datasource. So frankly speaking i don't know names and number of
that web controls cose they are always different.
How can i retreive selected values from those controls ?
... more >>
How do I get the input from a user web cotnrol and build the control based on that?
Posted by Alex Stevens at 10/20/2004 10:50:08 AM
Hi,
I'm building a user login control, which will accept a username and password
in textboxes and a checkbox to keep logged in - pretty much your
conventional login control.
When the user logs in, it writes a cookie to remember them, and if this
cookie exists when the control is run it just s... more >>
How do I get the url of control's page at design time?
Posted by GoogleGroups NO[at]SPAM WALDOLand.com at 10/20/2004 7:13:02 AM
I have a control designer that I am building for a webcontrol I've
built. The control includes some images as part of it's design. I'd
like for the designer to resolve those images so they can be shown in
the designer. The control at runtime would ordinarily call ResolveUrl
and get the correct p... more >>
INamingContainer has change my controls event order.....
Posted by Alex Stevens at 10/19/2004 5:02:01 PM
Hi All,
I have built a composite user web control and I've NOT implemented
INamingContainer.
It does implement IPostBackDataHandler to retrieve information entered into
the controls when the host page is submitted.
In the controls LoadPostData event, I retrieve the information entered and
... more >>
browse local disk drive
Posted by Stanley J Mroczek at 10/19/2004 4:25:02 PM
I am looking to browse local disk drive to upload pictures to my web system.
How do i display my local files? I am using an aspx in vb... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Override UITypeEditor on class
Posted by GoogleGroups NO[at]SPAM WALDOLand.com at 10/19/2004 11:55:53 AM
Somebody asked this in August but didn't get a response.
I have a control with various properties, one of which returns type
Color.
I have a custom UITypeEditor which brings up the advanced ColorPicker
dialog. This UIType editor works fine if I change the property type to
String. When I switc... more >>
dynamic linkbuttons event not raising - newbie
Posted by Matias Woloski at 10/18/2004 5:05:12 PM
Hi, I am creating a custom server control, and it dynamically creates lots
of LinkButtons, and then I try to subscribe to the click event doing this:
LinkButton link = new LinkButton();
link.Click +=new EventHandler(this.MyLinks_Click);
When I then click on the link, it never invokes MyLinks_C... more >>
User control + relative path
Posted by Alex at 10/18/2004 12:47:01 PM
Hi. I need some help on this.
I have a user control (a header) in my root directory, and all my pages use
that control. Then a created a folder (in my root directory) and put a new
page inside it, and that page use the same control, but this time the
control can't find it's images and resources ... more >>
how to throw (raise) exception from a custom control
Posted by geeksgk NO[at]SPAM yahoo.com at 10/17/2004 9:15:16 PM
Here is an interesting situation I'm facing while creating custom
controls.
Problem Abstract:
Unable to throw a exception from within the custom user control I
developed as a DLL.
Details:
I wrote a simple custom user control which creates a text box
dynamically.
Then I added try catch... more >>
Script control
Posted by Magne Ryholt at 10/16/2004 4:25:11 PM
I have made a control based on System.Web.UI.WebControls.WebControl which
override the Render method to emit a script
(by using the Page.RegisterStartupScript() method)
This works fine.
This control does not render any HTML code except the mentioned script,
therefore I would like to put the... more >>
|