In general, If I have a choice when developing a web site to use html elements or asp.net controls which one is better to use if my website is interactive with server side operations such as accessing database.
Is it more secure to use asp.net controls or does not matter.
On other words, is it more secure to use asp.net controls instead of html element to deliver data or receive data from/to server side or no differences?
In general, If I have a choice when developing a web site to use
Share
There is no difference – ASP.NET controls will render as standard html elements because that’s all browsers know how to display.