F
foobar
I have created a .net .aspx web page and would like to render the object
after setting some properties. I would also like to have event handlers in
the parent window that could respond to events raised by this page object.
For instance,
''''Sudo code
Dim MyPageInstance as new MyPage() ' Create and instance of the object
MyPageInstance.Color = "red" ' Set various properties
MyPageInstance.Render(path) ' Rener page to new browser
window
'More Code
Protected Sub MyPageInstance_OnChange(sender as object, e as eventargs)
handles MyPage.OnChange
'Code 'onchange
rebind data in parent window
End Sub
I appreciate any responses.
after setting some properties. I would also like to have event handlers in
the parent window that could respond to events raised by this page object.
For instance,
''''Sudo code
Dim MyPageInstance as new MyPage() ' Create and instance of the object
MyPageInstance.Color = "red" ' Set various properties
MyPageInstance.Render(path) ' Rener page to new browser
window
'More Code
Protected Sub MyPageInstance_OnChange(sender as object, e as eventargs)
handles MyPage.OnChange
'Code 'onchange
rebind data in parent window
End Sub
I appreciate any responses.