Hi,
I try to execute
this.InvokeMethodWithId("window.resizeTo(200,300);");
on Page_Load. But i received the following error.
Can not find member window.resizeTo(200,300);
Please tell me how can i resize window...
this
The InfomeMethodWithId expects the name of the function in the first parameer, and then the parameters to the function. That's why it's complaining as there is no function named "window.resizeTo(200,300);"
Try this:
this.InvokeMethodWithId("window.resizeTo", 200, 300)
Palli