Click here to Skip to main content
15,892,737 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Which technology should i use in .net platform to build web application so that user cane use the application with any browser and it is fastest and security is strong.
Posted
Updated 10-Nov-12 21:46pm
v2
Comments
Sergey Alexandrovich Kryukov 11-Nov-12 2:02am    
ASP.NET, I guess. And nothing is super fast, no matter what you use. However, I don't know what's your idea of "super fast". The question does no make any sense. What, do you expect a book on Web development to be written in response? :-)
--SA
CodingLover 11-Nov-12 3:15am    
What about PHP. But we have think about the security in many ways.
Sergey Alexandrovich Kryukov 11-Nov-12 12:14pm    
Oh sure, we have to, but I don't think we have resource to write a book on Web security in response to OP's request; we can only address some particular issues...
--SA
ridoy 11-Nov-12 3:52am    
it may be ASP.net..but it completely depends on your system which will you develop..
Md. Mahfujul 11-Nov-12 6:36am    
what I use MVC/Layer architecture/Silverlight or different

1 solution

For "any browser": HTML. It's standard, and all browsers support it. If you want your site to be visible by Linux/Android, stay away from Silverlight.
For "security is strong": Don't connect your server to the Internet. Don't even connect it to electricity. Anything else is not secure. Google a while, you'll see why. Security is a big topic, and you have to learn a lot (that means, years) before you can even try to write secure web sites.
For "fastest": The Internet is slow by definition. It's faster than when I started with the 19K dial-up modem, but it's still slow: data has to move half way across the world between processing and rendering. There are some things you can do to improve speed: stay away from rich content (video, huge graphics, sound) and stay away from Silverlight.

JM2B,

Pablo.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900