Better way to pass around?
From: Chris (cf_at_NoSpamzieQuotepro.com)
Date: 02/06/04
- Next message: mikeb: "Re: event order"
- Previous message: Mike Moore [MSFT]: "Re: Upload a File to a Web Server and error handling"
- Next in thread: Chris Jackson: "Re: Better way to pass around?"
- Reply: Chris Jackson: "Re: Better way to pass around?"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 5 Feb 2004 18:07:41 -0600
I have a modal (yes it must be modal) web page. I do this by having an
empty frame that points to my main page (so that I can repost without new
popups) I have to pass data to the child page from the parent and the only
way I can figure to do it by the url. Please correct me if I'm wrong on
that. When the data get to my frame I then have to pass the data to my
child form, again through the url (i think). The only way I found to do
this is in my frame to have this code:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim Data As String = Request.QueryString.Item("Data")
Response.Write("<HTML><HEAD><TITLE>Renewals</TITLE>")
Response.Write("</HEAD><frameset cols=""50%""><frame
name=""MainFrame"" src=""renewals.aspx?" & Data & """
></frameset></HTML>")
End Sub
I couldn't find any other way to pass the data around. Any ideas?
Thanks
Chris
- Next message: mikeb: "Re: event order"
- Previous message: Mike Moore [MSFT]: "Re: Upload a File to a Web Server and error handling"
- Next in thread: Chris Jackson: "Re: Better way to pass around?"
- Reply: Chris Jackson: "Re: Better way to pass around?"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|