UI Operation in Remote Scripting

  • Thread starter Thread starter Vijay Kerji
  • Start date Start date
V

Vijay Kerji

Hi,
Using remote scripting in .NET, is it possible to operate on the
server controls?
i.e. I call a method foo() of A.aspx, using remote scripting. Inside
foo(), can I Populate a datagrid or anything like that?

Thanks in Advance,

Vijay K Kerji
 
while you can, the web server controls abstract the html controls, which
makes them difficult to access from javascript. you can look at the html
generated, but is not guaranteed to remain the same between .net updates.
use either the html controls, or write you own set of server controls.

-- bruce (sqlwork.com)


| Hi,
| Using remote scripting in .NET, is it possible to operate on the
| server controls?
| i.e. I call a method foo() of A.aspx, using remote scripting. Inside
| foo(), can I Populate a datagrid or anything like that?
|
| Thanks in Advance,
|
| Vijay K Kerji
 
Back
Top