Whenever I take user's input through TextBox or anything else, it's good practice to use Html.Encode(Tex tBox1.Text) for the security purpose.
But is it neccessary now as ASP.NET 2.0 has strengthened the security measure and in 3.5 it is probably in-built.
I've tried to push html code through TextBox(wjthout Html.Encode()) but Framework resisted it!
But is it neccessary now as ASP.NET 2.0 has strengthened the security measure and in 3.5 it is probably in-built.
I've tried to push html code through TextBox(wjthout Html.Encode()) but Framework resisted it!
Comment