ASP.NET single quotes are converted to '

后端 未结 6 1338
我在风中等你
我在风中等你 2021-01-02 02:24

Note: Most probably this will be a double question, but since I haven\'t found a clear answer, I\'m asking it anyway.

In ASP.NET I\'d like to add some JavaScript to

6条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-02 02:53

    Well if you want to stop entering ingle quote try this

    onkeypress="if (event.keyCode==39) event.returnValue = false;"
    

    Like

    
    

提交回复
热议问题