A Simple Asp.net page is not Running

The 'responseencoding' attribute cannot be an empty string.
Line 1: <%@ Page Language="VB" ContentType="text/html" ResponseEncoding="" %>
Line 2: <html>
Line 3: <head>

Have you tried changing
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="" %>
to
<%@ Page Language="VB" ContentType="text/html" %>

or explicitly inserting the responseEncoding value ie "UTF-8" or similar
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="UTF-8" %>
Are you using a web.config file?
 
Sorry but we can't do code help, the msot we can do is give you some link that may help :)
 
Have you tried changing
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="" %>
to
<%@ Page Language="VB" ContentType="text/html" %>
Doing the above worked for me on my local machine
 
Back
Top