Muhammad Atif Agha
Muhammad Atif Agha

Reputation: 1545

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

Upvotes: 0

Views: 115

Answers (2)

Roman
Roman

Reputation: 20256

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).

Upvotes: 2

Saurabh
Saurabh

Reputation: 5727

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.

Upvotes: 0

Related Questions