Name ‘response’ is not declared.
When you attempt to use Response.Write in .Net, sometimes you need to use the full namespace to get it working. Simply use the following:
System.Web.HttpContext.Current.Response.Write(”Text that will be outputed”)
Also, when you attempt to use Rquest.QueryString() in .Net, sometimes you need to use the full namespace to get it working. Simply use the following:
System.Web.HttpContext.Current.Request.QueryString(”variable”)