I created a simple asp page with one form containing 4 fields. I connected it to a database in my web.
When I try to open the page in IE6, the code comes up. There is a big section that starts with <%
If I delete the <% section up to the <html, it will open fine, but I don't think it is linking to the database.
I believe it is something with a component, but not sure.
Here is a sample of what I get at the beginning of the html coding:
<%
' FP_ASP ASP Automatically generated by a FrontPage Component. Do not Edit.
On Error Resume Next
Session("FP_OldCodePage" = Session.CodePage
Session("FP_OldLCID" = Session.LCID
Session.CodePage = 1252
Session.LCID = 1033
Err.Clear
strErrorUrl = ""
If Request.ServerVariables("REQUEST_METHOD" = "POST" Then
If Request.Form("VTI-GROUP" = "0" Then
Err.Clear
Set fp_conn = Server.CreateObject("ADODB.Connection"
FP_DumpError strErrorUrl, "Cannot create connection"
Thanks,
When I try to open the page in IE6, the code comes up. There is a big section that starts with <%
If I delete the <% section up to the <html, it will open fine, but I don't think it is linking to the database.
I believe it is something with a component, but not sure.
Here is a sample of what I get at the beginning of the html coding:
<%
' FP_ASP ASP Automatically generated by a FrontPage Component. Do not Edit.
On Error Resume Next
Session("FP_OldCodePage" = Session.CodePage
Session("FP_OldLCID" = Session.LCID
Session.CodePage = 1252
Session.LCID = 1033
Err.Clear
strErrorUrl = ""
If Request.ServerVariables("REQUEST_METHOD" = "POST" Then
If Request.Form("VTI-GROUP" = "0" Then
Err.Clear
Set fp_conn = Server.CreateObject("ADODB.Connection"
FP_DumpError strErrorUrl, "Cannot create connection"
Thanks,