>I have a basic data entry form that I am inserting into a db. One of the >selections required is a very long detailed list that I would like to >display on another page. I have a link setup that creates a new window >displaying the options. Is it possible to pass data to this child window >from the parent, and then pass the selection made on the child window back >to the parent. >I remember doing this a while back with javascript, but thought there was >an easier way in .NET....haven't found any good examples yet
Nope. Since ASP.NET is server side there's no way to make it talk to client-side windows, so you're stuck using self.opener.document.forms["your form"] to access the parent window's form fields. adam.. --- You are currently subscribed to dotnet as: [email protected] To unsubscribe send a blank email to [EMAIL PROTECTED] --------- Administrated by 15 Seconds : http://www.15Seconds.com List Archives/Search : http://local.15Seconds.com/search Subscription Information : http://www.15seconds.com/listserv.htm Advertising Information: http://www.internet.com/mediakit/
