I want an output:
<input type="text" onclick="alert('\"')" />
But this doesn't work:
Response.Write("<input type=""text"" onclick=""alert('\""')"" />")
it gives me
<input type="text" ')"="" onclick="alert('\">
I want an output:
<input type="text" onclick="alert('\"')" />
But this doesn't work:
Response.Write("<input type=""text"" onclick=""alert('\""')"" />")
it gives me
<input type="text" ')"="" onclick="alert('\">
This will output what you want:
Response.Write("<input type=""text"" onclick=""alert('\x22')"" />")