unloco
New Member
- Messages
 - 3
 
- Reaction score
 - 0
 
- Points
 - 0
 
Hello
i tried running this simple script on my website but with no luck
	
	
	
		
here is the link
http://vbsign.x10.mx/ver.aspx
as you can see it is throwing an error
how can i even see what is that error?
here is my webconfig file
	
	
	
		
i followed this tutorial but with no success !!
any help please
Thank You
			
			i tried running this simple script on my website but with no luck
		Code:
	
	<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
     Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        Try
            Response.Write("Your ASP.NET version is: " & System.Environment.Version.ToString())
        Catch ex As Exception
            Response.Write(ex.ToString())
        End Try
    End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>ASP.Net Test</title>
    <script runat="server">
     Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        Try
            Response.Write("Your ASP.NET version is: " & System.Environment.Version.ToString())
        Catch ex As Exception
            Response.Write(ex.ToString())
        End Try
     End Sub
    </script>
</head>
<body>
    <form id="form1" runat="server">
    </form>
</body>
</html>
	here is the link
http://vbsign.x10.mx/ver.aspx
as you can see it is throwing an error
how can i even see what is that error?
here is my webconfig file
		Code:
	
	<?xml version="1.0" ?>
<configuration>
  <appSettings />
  <connectionStrings />
  <system.web>
    <customErrors mode="Off" />
  </system.web>
</configuration>
	any help please
Thank You
			
				Last edited: