%
'RootServerName="www1.wsi-staging.com"
'RootServerName="gws25"
RootServerName = Request.ServerVariables("server_name")
RootFilePath = "d:\hosting\marilynoh09\"
'RootFilePath = "D:\dydy\project\marilynoh\" 'Physical Path
'RootURLPath = "/Dev/marilynoh/"
RootURLPath = "/" 'Virtual Path from Root
'RootServerName="10.1.1.2"
'RootFilePath = "H:\AWP\DEV\AAA6\" 'Physical Path
'RootURLPath = "/DEV/AAA6/" 'Virtual Path from Root
RootDbPath = RootFilePath & "_db\" 'for database connection
Session("RootServerName")= RootServerName 'Root server
Session("RootFilePath") = RootFilePath 'Physical Path
Session("RootURLPath") = RootURLPath 'Virtual Path from Root
Session("RootDbPath") = RootDbPath
%>
Marilyn O'Hearne
 |
Breakthrough executive! life!
transition coaching
Marilyn O'Hearne, M.S.W.
__________
Master Certified Coach, International Coach
Federation |
 |
|
|
|
|
<%
Dim rs, strsql
Set rs = Server.CreateObject("ADODB.Recordset")
strsql = "select Content from PageContent where FileName='index.asp'"
rs.Open strsql, conn, 1, 3
response.Write(rs(0))
rs.Close
%>
|