[o2-www Fix]
------------------------------------------------------------------------
Step #1:------------------------------------------------------------------------
Open dbconn.asp with wordpad/notepad.
Find and Edit the following:<%
dim strDBCon,objConn
function conncreat()
Dim strDBCon
strDBCon = "DRIVER={SQL Server};SERVER=127.0.0.1; database=test2;UID=sa;PWD=123;"
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.Open(strDBCon)
end function
function connclose()
objConn.close
set objConn = nothing
end function
%>
- Change 127.0.0.1 to your server IP.
- Change sa to your server username.
- Change 123 to your server password.
Step #2:
Download the getasp_fix.zip from the attachment and replace it with your get.asp
Step #3:
Open get.asp with wordpad/notepad.
Find and Edit the following:function conncreat()
Dim strDBCon
strDBCon = "DRIVER={SQL Server};SERVER=127.0.0.1; database=test2;UID=sa;PWD=123;"
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.Open(strDBCon)
end function
- Change 127.0.0.1 to your server IP.
- Change sa to your server username.
- Change 123 to your server password.
Other Notes:
Inorder to make your webpages to work, you need to install these on your computer:
- Internet Information Services (IIS)
- ASP.NET
FAQ:
Q: Where can i get IIS?
A: Only WinXP Media Center and WinXP Pro can install IIS.
Q: How do i install IIS?
A:
To view the content, you need to sign in or register
Q: I have WinXP Home =( How can i install IIS?
A: Poor you, try ask
To view the content, you need to sign in or register
Q: Where can i get ASP.NET?
A:
To view the content, you need to sign in or register
Q: How do i install ASP.NET?
A:
To view the content, you need to sign in or register
---------------------- by S_W_A_T ----------------------