Archives by Tag 'ASP'
How to connect database in ASP
This is a compiled connection strings reference list on how to connect to SQL Server 2005.
SQL Native Client ODBC Driver
Standard security
Driver={SQL Native Client};Server=myServerAddress;Database=myDataBase; Uid=myUsername;Pwd=myPassword;
Are you using SQL Server 2005 Express? Don’t miss the server name syntax Servername\SQLEXPRESS where you substitute Servername with the name of the computer where the SQL Server 2005 Express installation resides.
Trusted [...]
How to get IP address?
Get IP address
By ASP <%= Request.ServerVariables(”REMOTE_ADDR”) %>
By PHP <?php echo $ip=$_SERVER[’REMOTE_ADDR’]; ?>
By JAVA
import java.net.*;
import java.io.*;
import java.applet.*;
public class GetClientIP extends Applet {
public void init() {
try {
InetAddress thisIp =
InetAddress.getLocalHost();
System.out.println(”IP:”+thisIp.getHostAddress());
}
catch(Exception e) {
e.printStackTrace();
}
}
}
//HTML Page
<HTML><HEAD></HEAD><BODY>
<APPLET CODE=”GetClientIP.class”
HEIGHT=10 WIDTH=10>
</APPLET>
Check JAVA console for output
</BODY></HTML>
BY Coldfusion
<cfoutput>#CGI.REMOTE_ADDR#</cfoutput>
BY CGI
import cgi
import os
print “Content-type: text/html”
print “”
print cgi.escape(os.environ[”REMOTE_ADDR”])