Click here to Skip to main content
15,920,896 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Help in implementing cascaded style sheet in C# asp.net web applcation Pin
Christian Graus8-Feb-07 0:37
protectorChristian Graus8-Feb-07 0:37 
GeneralRe: Help in implementing cascaded style sheet in C# asp.net web applcation Pin
EEmaan8-Feb-07 0:39
EEmaan8-Feb-07 0:39 
QuestionValidating an XML against a given XSD Pin
vsavarma7-Feb-07 17:38
vsavarma7-Feb-07 17:38 
AnswerRe: Validating an XML against a given XSD Pin
vsavarma7-Feb-07 17:39
vsavarma7-Feb-07 17:39 
QuestionIframe Development Pin
macca247-Feb-07 4:40
macca247-Feb-07 4:40 
AnswerRe: Iframe Development Pin
led mike7-Feb-07 4:50
led mike7-Feb-07 4:50 
QuestionApache Server - throttle downloads Pin
#realJSOP7-Feb-07 2:05
professional#realJSOP7-Feb-07 2:05 
AnswerRe: Apache Server - throttle downloads Pin
badgrs7-Feb-07 3:05
badgrs7-Feb-07 3:05 
AnswerRe: Apache Server - throttle downloads Pin
Vasudevan Deepak Kumar7-Feb-07 4:33
Vasudevan Deepak Kumar7-Feb-07 4:33 
QuestionUsing Java Script as a security model to protect hidden fields Pin
Marcus J. Smith7-Feb-07 0:08
professionalMarcus J. Smith7-Feb-07 0:08 
AnswerRe: Using Java Script as a security model to protect hidden fields Pin
Bradml7-Feb-07 0:36
Bradml7-Feb-07 0:36 
JokeRe: Using Java Script as a security model to protect hidden fields Pin
blue_arc7-Feb-07 1:02
blue_arc7-Feb-07 1:02 
GeneralRe: Using Java Script as a security model to protect hidden fields Pin
Marcus J. Smith7-Feb-07 1:20
professionalMarcus J. Smith7-Feb-07 1:20 
GeneralRe: Using Java Script as a security model to protect hidden fields Pin
badgrs7-Feb-07 2:54
badgrs7-Feb-07 2:54 
GeneralRe: Using Java Script as a security model to protect hidden fields Pin
Vasudevan Deepak Kumar7-Feb-07 4:36
Vasudevan Deepak Kumar7-Feb-07 4:36 
GeneralRe: Using Java Script as a security model to protect hidden fields Pin
Marcus J. Smith7-Feb-07 1:23
professionalMarcus J. Smith7-Feb-07 1:23 
GeneralRe: Using Java Script as a security model to protect hidden fields Pin
User 98858-Feb-07 21:43
User 98858-Feb-07 21:43 
Here are the arguments you need.

1. You can see the source of any web page, no matter what you do on the browser. If you managed to lock down the browser, the data can still be seen using a packet sniffer like Wireshark.

2. Since the browser and the transmission media cannot be trusted, the incoming data has to checked at the first point where you can check it and be sure that no one can modify it further. That point is your web server. So, you have to make sure that all data conforms to expected ranges and that no *bad* characters make it through in the parameters that will be used in generating SQL statements.

3. If the incoming data is not sanitized, hackers can send in SQL fragments in such a manner that they can compromise your SQL server. This mechanism is called SQL injection.

So, if you really care about security, please use TLS/SSL to encrypt the channel (only needed if sensitive data is involved), validate user input at the server, and use javascript to enhance user experience.

Thomas

modified 29-Aug-18 21:01pm.

GeneralRe: Using Java Script as a security model to protect hidden fields Pin
Marcus J. Smith9-Feb-07 3:48
professionalMarcus J. Smith9-Feb-07 3:48 
AnswerRe: Using Java Script as a security model to protect hidden fields Pin
Guffa7-Feb-07 7:09
Guffa7-Feb-07 7:09 
QuestionDefinition error Pin
nclauder6-Feb-07 20:42
nclauder6-Feb-07 20:42 
AnswerRe: Definition error Pin
blue_arc7-Feb-07 1:20
blue_arc7-Feb-07 1:20 
AnswerRe: Definition error Pin
Sandeep Akhare7-Feb-07 1:36
Sandeep Akhare7-Feb-07 1:36 
GeneralRe: Definition error Pin
nclauder7-Feb-07 3:02
nclauder7-Feb-07 3:02 
GeneralRe: Definition error Pin
Sandeep Akhare7-Feb-07 3:08
Sandeep Akhare7-Feb-07 3:08 
AnswerRe: Definition error Pin
badgrs7-Feb-07 2:50
badgrs7-Feb-07 2:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.