Prevent special characters in a TextBox

前端 未结 6 1536
一生所求
一生所求 2020-12-19 22:55

I want to prevent users from entering url\'s (like a href=\"\") in a TextBox.

I want to use a regular expression validator but no idea what to write?

How ca

6条回答
  •  猫巷女王i
    2020-12-19 23:09

    javascript + regex will do this, but there's no standard code method I can point you to.

    The important thing to remember, though, is that no matter what you do, you can't prevent users from submitting a request to your server with the bad stuff in it. That means anything you do on the client web browser with javascript is only a band-aid and is there to help your users know where the lines are. It's not the real security code. The real security code must be on your server. That's where you need to know how to handle things like web addresses entered in a textbox.

提交回复
热议问题