简体   繁体   中英

Client Sided application in ASP.Net

I am working on asp.Net, and i am required to build a costing calculator having number of fields and comboboxes with a lot of complex formulas, and there would be almost 50 text fields, each have relation to previous fields or like that, in desktop application its quite easy to build it, but in asp, is there anyway to code in asp.net or some asp.net component with which we can do so, i dont wana use javascript, i want to implement it in code behind c#. There is a way to implement it using Ajax, but that sheet will not work if network or internet is closed, as server based app does not work if network is off, Let me know what to do. Atif

There's this old MSDN article that talks about enhancing client side experience using DLLs downloaded from the server. That might be a marginally useful option to pursue.

Another option is to use something like Script# and write your code in C# and have a compiler translate it to JavaScript. As I understand it you'll be writing code that's mostly calculations and possibly some validation, that kind of stuff should translate from one language to another more easily.

Last but not least is basically writing a thick client app that will launch from inside a browser. Your main option for that is Silverlight . It will provide for a rich user experience client side and still allow access to the application from a webpage. It can also be made to work in partially connected situations (such as network being down for whatever reason).

Please code in c# and use Ajax (update panel). Don't bother about network off or on. You can deploy on server and it work with internet.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM