Antalya, Turkey, 17-22 June, 2001 |
Dear Professors Selcuk and Mengüç,
You may access the Database file of RADIATION-2001 Symposium by clicking on the link.
It is an Office-2000 Microsoft Access file named rad01.mdb
You may open this file as read-only or download it to your PC. In order to open the file
without dowloading, you have to configure your browser settings. Click on "pick application"
and then choose "Msaccess.exe in your Office2000 directory" as the opening program. Enjoy.
ICHMT Secretariat
<%
Choice1=Request.Form("ENTER")
Choice2=Request.Form("ChangePassword")
Choice3=Request.Form("EXIT")
If Choice1="ENTER" then
username=Request.Form("username")
password=Request.Form("password")
Set passworddatabase=Server.CreateObject("ADODB.Connection")
passworddatabase.open "paperRAD01"
sorgu="select*from password where userid='"&username&"'"
Set usernamerecords=passworddatabase.Execute(sorgu)
if usernamerecords.EOF then
Response.Redirect "passentry.asp?donus=wrongentry"
else
TruePassword=trim(usernamerecords("passwordid"))
If password=TruePassword then
Response.Cookies("entry")("user")=username
else
Response.Redirect "passentry.asp?donus=wrongentry"
End if
End if
usernamerecords.Close
Set usernamerecords=Nothing
passworddatabase.Close
Set passworddatabase=nothing
End if
If Choice2="Change Password" then
Response.Redirect "passchangeentry.asp"
End if
If Choice3="EXIT" then
Response.Redirect "mainindex.html"
End if
%>