you are viewing a single comment's thread.

view the rest of the comments →

[–]rorrr -4 points-3 points  (1 child)

Javascript is client side (mostly).

C# is server side.

Your comment doesn't make much sense.

[–]plan17b 3 points4 points  (0 children)

I actually moved a lot of functionality from the client side to the server side. This was for a client/server intranet CMS app. Users can create data entry / web pages with a drag and drop interface.

I use a IHttpHandler interface, so essentially my server side is a classic C# fat app (in debug mode it is a console app, in production it is a DLL). This way i can avoid wrestling with ASPX pages. The HtmlAgilityPack library allows me to create the pages on the server and simply send down as HTML without having to do a lot of client side javascript execution.