Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Good replacement of GWT for asp.net

Tags:

asp.net

gwt

I know Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications. GWT is used by many products at Google, including Google Wave and Google AdWords. It's open source, completely free, and used by thousands of developers around the world.

It can be integrated in java based web applications....

Is there any suitable replacement of GWT for asp.net web application? If so,what is it?

like image 855
ACP Avatar asked Nov 14 '22 12:11

ACP


1 Answers

GWT is platform agnostic. It can be easily integrated with any web application, not just Java. You just tell it to inject widgets into elements on the host page - the host page could be static HTML.

The built in RPC mechanism makes it easy to do RPC with a Java on the server side, but you can certainly use JSON or XML to exchange data with your server. It's a little more work, but not impossible. Look up 'overlay types' - these make working with JSON data extremely easy.

like image 138
AlexJReid Avatar answered Dec 06 '22 07:12

AlexJReid