tags:

views:

317

answers:

2

I have a page rendered in asp.net. Now I want to use google web toolkit to interact with this page. Is it possible..

+1  A: 

Yes.

Since GWT is simply compiled down to Javascript, you can use it with any server-side language. You will use the GWT Ajax methods to communicate with your backend.

JP
A: 

When working with non-java technology on the server side, you probably should use JSON RPC to communicate with your logic on the server side.

tronda