![]() Welcome! and rules Joel on Software |
Response.Write in custom class How can I call Response.Write method in a custom class. It works in my aspx page but I can not invoke it in a custom class.
Jen
How can I call Response.Write method in a custom class. It works in my aspx page but I can not invoke it in a custom class.
Simon Rez
System.Web.HttpContext.Current.Response.Write().
Joe
Have your class return a string from a property and then have your aspx display the result of the method call.
Sassy
Actually, I am trying to launch a new window inside the custom class using the following code:
Jen
But the response.write method keeps failing on me. :==(
Jen
Failing how?
Joe
|