pass-data

How can I pass a data string to a programmatically loaded custom user control in C#

I've written a Custom User Control which returns some user specific data. To load the Custom User Control I use the following line of code: UserControl myUC = (UserControl).Load("~/customUserControl.ascx"); But how can I access string user inside the User Control myUC? ...

pass data from parent page to popup

Hi I have an asp.net page which launches a child page in another browser window to look like a popup. I want to pass 2 pieces of data to it from the parent page. I know ots possible with javascript, but is there a way to do it using C#? thanks again ...

pass data from parent to popup

Apologies if this seems like a duplicate post... Thomas Warner kindly answeres an earlier post suggesting I use: Popup.aspx?Data1=Piece_of_data&Data2=Piece_of_data Just want to ask, if my code is Popup.aspx?Data1=textbox1.text&Data2=textbox2.text whats the proper way to reference whats in the textboxes? The way is is above, all that...

Facebook iFrame application: How to pass data from URL Query String

Hello! I have a Facebook application that has a picture gallery. It's build in Flex 4. I want to allow users to link to a specific image. How can that be done? The only way I see this being done is adding a GET var like &my_picture=asd.jpg in the Facebook page URL, but I don't know how to read that from the iFrame. ...

How to pass data from parent view to child upon opening?

I want to load data (an array of strings) from the parent view into a set of UITextFields in the child view upon presenting the modalView. I know how to pass from child to parent, and I'm sure it's even easier to go the other way, but I don't know how. Thanks in advance! UPDATE: Update removed because I found the problem (double relea...