How to tell user ASP.NET is safe

  • Thread starter Thread starter ad
  • Start date Start date
A

ad

How can I tell user, the web applicaiton developed by asp.net is safe.
Where can find some document?
 
You don't need a document.

Just tell your user that ASP.NET only executes server-side,
not client-side, so there's nothing he needs to worry about.

ASP.NET sends plain HTML to web clients who access ASP.NET server applications.
No code runs on the client.



Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
 
Back
Top