% @ LANGUAGE="VBSCRIPT" %> <% Option Explicit %> <%' This example can be used to call the ByRoyalty stored procedure ' installed with the PUBS database with Microsoft SQL Server. ' This sample assumes that SQL Server is running on the local machine ' SQL needs to know the name of the server. Since IISHelp calls this file with ' "http://localhost...", simply using Request.ServerVariables("SERVER_NAME") ' will not work because it returns the name "localhost" instead of the machine name. ' SQL doesn't recognise "localhost" as itself for security reasons. ' This script uses an If... Then statement to call itself once the user has specified the server name. %>
<%
if ("" = Request.Form("srvname")) then
Response.Write "Please enter the name of your SQL server:
"
%>