Home All Groups Group Topic Archive Search About

I guess this can't be done can it ?

Author
1 Jul 2005 3:24 PM
Paul D. Fox
I guess this can't be done can it ?

1. Create a web user control (.ascx page) with just a Drop-down control in
it.
2. Drag the user control to your web form (.aspx page)
3. Access the drop-down's selectedValue (to save to a Database) or Set the
selectedValue of the drop-down from a
Database query

P

Author
1 Jul 2005 4:00 PM
cc
Sure it can. Not sure about the drag-and-drop, but click the Html
button and get into the code-side of the presentation page. Make sure
to put an @Register page directive at the top to register your user
control (for more info, google "ASP.Net User Controls"--MSDN has a page
explaining how to properly insert the tag.)
Personally, I like to expose only the properties of the user control's
sub-controls (in your case, the drop-down control) that I'm going to
use, via a property in the code-behind. It just makes things cleaner.
For a quick-and-dirty approach, however, change the access modifier for
the drop-down control in the user-control's code-behind (.ascx.cs or
..ascx.vb file, depending on which language you're using) from
"protected" (if C#; or "Friend" if VB) to "public". If you dragged your
drop-down list onto your .ascx page, you should see your drop-down
control defined near the top of the page. It'll probably be something
like DropDownList1. Once you've change the access modifier to public,
you should be able to see the control in your aspx page's code-behind
file (e.g. myUserControl.DropDownList1.) You'll be able to access all
of the properties of the drop-down control as if you were working with
it in the .ascx page.
Author
2 Jul 2005 12:03 AM
Steve Walker
In message <uZmhqDlfFHA.3***@TK2MSFTNGP15.phx.gbl>, Paul D. Fox
<pdfo***@rcn.com> writes
>I guess this can't be done can it ?
>
>1. Create a web user control (.ascx page) with just a Drop-down control in
>it.
>2. Drag the user control to your web form (.aspx page)
>3. Access the drop-down's selectedValue (to save to a Database) or Set the
>selectedValue of the drop-down from a
>Database query

I'd do that either by subclassing System.Web.UI.WebControls.DropDownList
or by building a composite control. It's very simple and easy to do, and
it works properly at design-time. I hardly ever bother with web user
controls.

--
Steve Walker