Charset in ASP
Force web to encode with utf-8
insert below code at the top of the page
session.codepage="65001"
Test Code Block
string script = @"<script type='text/javascript'>
alert('error'); window.history.back();
</script>";
ClientScript.RegisterStartupScript(this.GetType(), "NoMember", script);