DropDown List or DataGrid parent child web form

  • Thread starter Thread starter Jason Huang
  • Start date Start date
J

Jason Huang

Hi,

I want to create a Web form in asp.net, using C#. So in a web page, we have
one DropDown List or one DataGrid, that when we click an item from a
dropdown list, there will pop up another web page which have details
regarding to the dropdown list item. This is similar to the Parent/Child in
the visual basic 6.
But I have no idea how to do it in web forms.
Would someone kindly give me some adivise?
Thanks.

Jason
 
Jason:

One approach would be to write client script to the web page to handle the
dropdownlist change event and open a new window with the appropriate details
page. Of course, this depends on how your detail pages are setup.

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


Hi,

I want to create a Web form in asp.net, using C#. So in a web page, we have
one DropDown List or one DataGrid, that when we click an item from a
dropdown list, there will pop up another web page which have details
regarding to the dropdown list item. This is similar to the Parent/Child in
the visual basic 6.
But I have no idea how to do it in web forms.
Would someone kindly give me some adivise?
Thanks.

Jason
 
Back
Top