how to an aspx page to COM+ component
I am developing a COM+ component (server component)..which accepts a reference of an aspx page at runtime...
it may look something like this...
dim obj as new MyComponent
obj.FormBind(me,"tablename")
I was successful...when I developed the COM+ component as a library component...But when I wanted to change it as Server Component....it says "the aspx page is not marked as serializable". Eventhough I could understand the problem (as the parameter is going out of application domain)...I am unable to solve it. Can anyone help me please.