I am using pure asp to upload files. I have a page before
db-multiple-file-to-diskfolder.asp called folder.asp. where user can
select the name of the folder from drop down list. so the files would
be uploaded in selected folder, when i select the folder from the list,
it opens db-multiple-file-to-diskfolder.asp, I browse the file and
click upload button then I am getting this error.
_________Error__________
Server.MapPath(), ASP 0171 (0x80004005)
The Path parameter must be specified for the MapPath method.
/SelfolderTest/db-multiple-file-to-diskfolder.asp, line 42
******************************************
this is folder.asp
<form name=3D"myForm" action=3D"db-multiple-file-to-diskfolder.asp"
method=3D"post">
<p>
<select name=3D"foldername" >
<option value=3D"notable">Choose your manual:</option>
<option value=3D"ListFiles">General Manual</option>
<option value=3D"phone">Phone</option>
<option value=3D"pics">pics</option>
</select>
</p>
<p>
<input name=3D"Ok" type=3D"submit" value=3D"View
Manual">
</p>
</form>
____________________________________________________
here is db-multiple-file-to-diskfolder.asp code
<%@LANGUAGE=3D"VBSCRIPT"%>
<%
'Sample file Field-SaveAs.asp
'Store extra upload info to a database
' and file contents to the disk
Server.ScriptTimeout =3D 5000
'Create upload form
'Using Huge-ASP file upload
'Dim Form: Set Form =3D Server.CreateObject("ScriptUtils.ASPForm")
'Using Pure-ASP file upload
Dim Form: Set Form =3D New ASPForm %><!--#INCLUDE FILE=3D"_upload.asp"--><%
Server.ScriptTimeout =3D 1000
Form.SizeLimit =3D 10240*1024'10MB
'{b}Set the upload ID for this form.
'Progress bar window will receive the same ID.
if len(Request.QueryString("UploadID"))>0 then
Form.UploadID =3D Request.QueryString("UploadID")'{/b}
end if
'was the Form successfully received?
Const fsCompletted =3D 0
If Form.State =3D fsCompletted Then 'Completted
dim VirtualFolder
'VirtualFolder =3Dform("foldername")
If Form("foldername") <> "" Then
Session("foldername") =3D Form("foldername")
End If
VirtualFolder =3D Session("foldername")
'Create destination path+filename for the source file.
'Create an URL for image.
Dim DestinationPath, virtDestinationPath
________line 42 where I am getting error_____________
DestinationPath =3D Server.mapPath(VirtualFolder) & "\"
virtDestinationPath =3D "http://" +
Request.ServerVariables("SERVER_NAME") _
+ GetPath(Request.ServerVariables("SCRIPT_NAME") ) _
+ "/" + VirtualFolder + "/"
'Open recordset to store uploaded data
Dim RS: Set RS =3D OpenUploadRS
Dim FileField
For Each FileField in Form.Files.Items
'Fo each file sent
if len(FileField.FileName)> 0 then 'File is specified.
Dim DestinationFileName
DestinationFileName =3D DestinationPath & FileField.FileName
'Save file to physical location
FileField.SaveAs DestinationFileName
'Store extra info about upload to database
RS.AddNew
RS("UploadDT") =3D Now()
RS("Description") =3D Form("Desc-" & FileField.Name)
RS("SourceFileName") =3D virtDestinationPath & FileField.FileName
RS("DestPath") =3D DestinationFileName
RS("DataSize") =3D FileField.Length
'RS("FileName") =3D form("FileName")
'...
RS.Update
end if
Next
'What to do with Form("Description")?
'{b}Save file to the destination
'{/b}
' response.write "<Font color=3Dgreen><br>SourceFile was saved as " &
DestinationFileName
' response.write "<br>See ListFiles table in " &
Server.MapPath("upload.mdb") & " database.</Font>"
ElseIf Form.State > 15 then
Const fsSizeLimit =3D &HD
Select case Form.State
case fsSizeLimit: response.write "<br><Font Color=3Dred>Source form
size (" & Form.TotalBytes & "B) exceeds form limit (" & Form.SizeLimit
& "B)</Font><br>"
case else response.write "<br><Font Color=3Dred>Some form
error.</Font><br>"
end Select
End If'Form.State =3D 0 then
Function OpenUploadRS()
Dim RS : Set RS =3D CreateObject("ADODB.Recordset")
'Open dynamic recordset, table Upload
RS.Open "ListFiles", GetConnection, 2, 2
Set OpenUploadRS =3D RS
end Function
Function GetConnection()
dim Conn: Set Conn =3D CreateObject("ADODB.Connection")
Conn.Provider =3D "Microsoft.Jet.OLEDB.4.0"
Conn.open "Data Source=3D" & Server.MapPath("upload.mdb")
set GetConnection =3D Conn
end function
Function SplitFileName(FullPath)
Dim Pos, PosF
PosF =3D 0
For Pos =3D Len(FullPath) To 1 Step -1
Select Case Mid(FullPath, Pos, 1)
Case ":", "/", "\": PosF =3D Pos + 1: Pos =3D 0
End Select
Next
If PosF =3D 0 Then PosF =3D 1
SplitFileName =3D PosF
End Function
Function GetPath(FullPath)
GetPath =3D left(FullPath, SplitFileName(FullPath)-1)
End Function
'{b}get an unique upload ID for this upload script and progress bar.
Dim UploadID, PostURL
UploadID =3D Form.NewUploadID
'Send this ID as a UploadID QueryString parameter to this script.
PostURL =3D Request.ServerVariables("SCRIPT_NAME") & "?UploadID=3D" &
UploadID'{/b}
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN"><html><!-- InstanceBegin
template=3D"/Templates/SiteTemplate.dwt" codeOutsideHTMLIsLocked=3D"false"
-->
<head>
<!-- InstanceBeginEditable name=3D"doctitle" -->
<title>Documents</title>
<!-- InstanceEndEditable -->
<meta http-equiv=3D"Content-Type" content=3D"text/html;
charset=3Diso-8859-1">
<script language=3D"JavaScript" type=3D"text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init=3D=3Dtrue) with (navigator) {if
((appName=3D=3D"Netscape")&&(parseInt(appVersion)=3D=3D4)) {
document.MM_pgW=3DinnerWidth; document.MM_pgH=3DinnerHeight;
onresize=3DMM_reloadPage; }}
else if (innerWidth!=3Ddocument.MM_pgW || innerHeight!=3Ddocument.MM_pgH)
location.reload();
}
MM_reloadPage(true);
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=3Ddocument;
if((p=3Dn.indexOf("?"))>0&&parent.frames.length) {
d=3Dparent.frames[n.substring(p+1)].document; n=3Dn.substring(0,p);}
if(!(x=3Dd[n])&&d.all) x=3Dd.all[n]; for (i=3D0;!x&&i<d.forms.length;i++)
x=3Dd.forms[i][n];
for(i=3D0;!x&&d.layers&&i<d.layers.length;i++)
x=3DMM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=3Dd.getElementById(n); return x;
}
function MM_setTextOfLayer(objName,x,newText) { //v4.01
if ((obj=3DMM_findObj(objName))!=3Dnull) with (obj)
if (document.layers) {document.write(unescape(newText));
document.close();}
else innerHTML =3D unescape(newText);
}
function MM_swapImgRestore() { //v3.0
var i,x,a=3Ddocument.MM_sr;
for(i=3D0;a&&i<a.length&&(x=3Da[i])&&x.oSrc;i++) x.src=3Dx.oSrc;
}
function MM_preloadImages() { //v3.0
var d=3Ddocument; if(d.images){ if(!d.MM_p) d.MM_p=3Dnew Array();
var i,j=3Dd.MM_p.length,a=3DMM_preloadImages.arguments; for(i=3D0;
i<a.length; i++)
if (a[i].indexOf("#")!=3D0){ d.MM_p[j]=3Dnew Image;
d=2EMM_p[j++].src=3Da[i];}}
}
function MM_swapImage() { //v3.0
var i,j=3D0,x,a=3DMM_swapImage.arguments; document.MM_sr=3Dnew Array;
for(i=3D0;i<(a.length-2);i+=3D3)
if ((x=3DMM_findObj(a[i]))!=3Dnull){document.MM_sr[j++]=3Dx; if(!x.oSrc)
x=2EoSrc=3Dx.src; x.src=3Da[i+2];}
}
function MM_timelinePlay(tmLnName, myID) { //v1.2
//Copyright 1997, 2000 Macromedia, Inc. All rights reserved.
var
i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,propNum,theObj,firstTime=
=3Dfalse;
if (document.MM_Time =3D=3D null) MM_initTimelines(); //if *very* 1st
time
tmLn =3D document.MM_Time[tmLnName];
if (myID =3D=3D null) { myID =3D ++tmLn.ID; firstTime=3Dtrue;}//if new ca=
ll,
incr ID
if (myID =3D=3D tmLn.ID) { //if Im newest
setTimeout('MM_timelinePlay("'+tmLnName+'",'+myID+')',tmLn.delay);
fNew =3D ++tmLn.curFrame;
for (i=3D0; i<tmLn.length; i++) {
sprite =3D tmLn[i];
if (sprite.charAt(0) =3D=3D 's') {
if (sprite.obj) {
numKeyFr =3D sprite.keyFrames.length; firstKeyFr =3D
sprite.keyFrames[0];
if (fNew >=3D firstKeyFr && fNew <=3D
sprite.keyFrames[numKeyFr-1]) {//in range
keyFrm=3D1;
for (j=3D0; j<sprite.values.length; j++) {
props =3D sprite.values[j];
if (numKeyFr !=3D props.length) {
if (props.prop2 =3D=3D null) sprite.obj[props.prop] =3D
props[fNew-firstKeyFr];
else sprite.obj[props.prop2][props.prop] =3D
props[fNew-firstKeyFr];
} else {
while (keyFrm<numKeyFr &&
fNew>=3Dsprite.keyFrames[keyFrm]) keyFrm++;
if (firstTime || fNew=3D=3Dsprite.keyFrames[keyFrm-1]) {
if (props.prop2 =3D=3D null) sprite.obj[props.prop] =3D
props[keyFrm-1];
else sprite.obj[props.prop2][props.prop] =3D
props[keyFrm-1];
} } } } }
} else if (sprite.charAt(0)=3D=3D'b' && fNew =3D=3D sprite.frame)
eval(sprite.value);
if (fNew > tmLn.lastFrame) tmLn.ID =3D 0;
} }
}
function MM_timelineGoto(tmLnName, fNew, numGotos) { //v2.0
//Copyright 1997, 2000 Macromedia, Inc. All rights reserved.
var
i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,lastKeyFr,propNum,theObj;
if (document.MM_Time =3D=3D null) MM_initTimelines(); //if *very* 1st
time
tmLn =3D document.MM_Time[tmLnName];
if (numGotos !=3D null)
if (tmLn.gotoCount =3D=3D null) tmLn.gotoCount =3D 1;
else if (tmLn.gotoCount++ >=3D numGotos) {tmLn.gotoCount=3D0; return}
jmpFwd =3D (fNew > tmLn.curFrame);
for (i =3D 0; i < tmLn.length; i++) {
sprite =3D (jmpFwd)? tmLn[i] : tmLn[(tmLn.length-1)-i]; //count bkwds
if jumping back
if (sprite.charAt(0) =3D=3D "s") {
numKeyFr =3D sprite.keyFrames.length;
firstKeyFr =3D sprite.keyFrames[0];
lastKeyFr =3D sprite.keyFrames[numKeyFr - 1];
if ((jmpFwd && fNew<firstKeyFr) || (!jmpFwd && lastKeyFr<fNew))
continue; //skip if untouchd
for (keyFrm=3D1; keyFrm<numKeyFr && fNew>=3Dsprite.keyFrames[keyFrm];
keyFrm++);
for (j=3D0; j<sprite.values.length; j++) {
props =3D sprite.values[j];
if (numKeyFr =3D=3D props.length) propNum =3D keyFrm-1 //keyframes
only
else propNum =3D
Math.min(Math.max(0,fNew-firstKeyFr),props.length-1); //or keep in
legal range
if (sprite.obj !=3D null) {
if (props.prop2 =3D=3D null) sprite.obj[props.prop] =3D
props[propNum];
else sprite.obj[props.prop2][props.prop] =3D
props[propNum];
} }
} else if (sprite.charAt(0)=3D=3D'b' && fNew =3D=3D sprite.frame)
eval(sprite.value);
}
tmLn.curFrame =3D fNew;
if (tmLn.ID =3D=3D 0) eval('MM_timelinePlay(tmLnName)');
}
function MM_timelineStop(tmLnName) { //v1.2
//Copyright 1997, 2000 Macromedia, Inc. All rights reserved.
if (document.MM_Time =3D=3D null) MM_initTimelines(); //if *very* 1st
time
if (tmLnName =3D=3D null) //stop all
for (var i=3D0; i<document.MM_Time.length; i++)
document.MM_Time[i].ID =3D null;
else document.MM_Time[tmLnName].ID =3D null; //stop one
}
function MM_initTimelines() { //v4.0
//MM_initTimelines() Copyright 1997 Macromedia, Inc. All rights
reserved.
var ns =3D navigator.appName =3D=3D "Netscape";
var ns4 =3D (ns && parseInt(navigator.appVersion) =3D=3D 4);
var ns5 =3D (ns && parseInt(navigator.appVersion) > 4);
document.MM_Time =3D new Array(1);
document.MM_Time[0] =3D new Array(1);
document.MM_Time["Timeline1"] =3D document.MM_Time[0];
document.MM_Time[0].MM_Name =3D "Timeline1";
document.MM_Time[0].fps =3D 5;
document.MM_Time[0][0] =3D new String("behavior");
document.MM_Time[0][0].frame =3D 25;
document.MM_Time[0][0].value =3D
"MM_setTextOfLayer('submanu','','')";
document.MM_Time[0].lastFrame =3D 25;
for (i=3D0; i<document.MM_Time.length; i++) {
document.MM_Time[i].ID =3D null;
document.MM_Time[i].curFrame =3D 0;
document.MM_Time[i].delay =3D 1000/document.MM_Time[i].fps;
}
}
//-->
</script>
<!-- InstanceBeginEditable name=3D"head" --><!-- InstanceEndEditable -->
</head>
<body bgcolor=3D"#CCCCCC" text=3D"#333333" link=3D"#0000FF" vlink=3D"#0000F=
F"
alink=3D"#CC9900"
onLoad=3D"MM_preloadImages('images/Homecolum.png','images/RegCol.png','imag=
es/UploadCol.png','images/loginCol.png','DifferentTemplate/Images/Home1.png=
','DifferentTemplate/Images/Services1.png','DifferentTemplate/Images/Upload=
%20Files1.png','DifferentTemplate/Images/About%20Us1.png','images/search1.p=
ng')"
tracingsrc=3D"images/wn1.jpg" tracingopacity=3D"45">
<div id=3D"Layer1" style=3D"position:absolute; width:977px; height:152px;
z-index:1; left: 4px; top: 6px;">
<!-- InstanceBeginEditable name=3D"editableregion1" -->
<div id=3D"Layer1" style=3D"position:absolute; width:143px; height:276px;
z-index:1; left: 598px; top: 133px;">
<div align=3D"center"> </div>
<table width=3D"132" border=3D"0" cellspacing=3D"0" cellpadding=3D"0"
style=3D"border-collapse: collapse" bordercolor=3D"#111111">
<tr>
<td rowspan=3D"14" valign=3D"top" align=3D"right" width=3D"10"
height=3D"1"> </td>
<td height=3D"3" align=3D"left" valign=3D"top" colspan=3D"2"> </=
td>
</tr>
<tr>
<td class=3D"directhead" height=3D"21" align=3D"left"
colspan=3D"2"> <font color=3D"#999999"><strong>Quick
Links</strong></font></td>
</tr>
<tr>
<td align=3D"left" valign=3D"top" height=3D"3" colspan=3D"2" > <img
src=3D"DifferentTemplate/Images/1PixGray.png" width=3D"140"
height=3D"2"></td>
</tr>
<tr>
<td align=3D"left" width=3D"1" height=3D"1"> </td>
<td height=3D"1" align=3D"left" width=3D"131"> <font color=3D"#006699"
size=3D"2" face=3D"Times New Roman, Times, serif"><strong>Current
News</strong></font></td>
</tr>
<tr>
<td align=3D"left" width=3D"1" height=3D"19"></td>
<td height=3D"19" align=3D"left" width=3D"131"> <a
href=3D"/CITY-HALL/forms/default.asp"><span class=3D"direct"><font
color=3D"#006699" size=3D"2" face=3D"Times New Roman, Times,
serif"><strong>Forms</strong></font></span></a></td>
</tr>
<tr>
<td align=3D"left" width=3D"1" height=3D"1"></td>
<td height=3D"1" align=3D"left" width=3D"131"> <a
href=3D"/careers/default.asp"><span class=3D"direct"><font color=3D"#006699"
size=3D"2" face=3D"Times New Roman, Times, serif"><strong>
Careers & Working </strong></font></span></a></td>
</tr>
<tr>
<td align=3D"left" width=3D"1" height=3D"1"></td>
<td height=3D"1" align=3D"left" width=3D"131"> <strong><a
href=3D"/careers/default.asp"><span class=3D"direct"><font color=3D"#006699"
size=3D"2" face=3D"Times New Roman, Times,
serif">some</font></span></a></strong></td>
</tr>
<tr>
<td align=3D"left" width=3D"1" height=3D"1"></td>
<td height=3D"1" align=3D"left" width=3D"131"> <strong><a
href=3D"/careers/default.asp"><span class=3D"direct"><font color=3D"#006699"
size=3D"2" face=3D"Times New Roman, Times,
serif">Something</font></span></a></strong></td>
</tr>
<tr>
<td align=3D"left" width=3D"1" height=3D"1"></td>
<td height=3D"1" align=3D"left" width=3D"131"> <strong><font
color=3D"#006666" size=3D"2" face=3D"Times New Roman, Times, serif"><a
href=3D"/careers/default.asp"><span class=3D"direct"><font
color=3D"#006699">Something</font></span></a></font></strong></td>
</tr>
<tr>
<td align=3D"left" width=3D"1" height=3D"1"></td>
<td height=3D"1" align=3D"left" width=3D"131"> <strong><font
color=3D"#006666" size=3D"2" face=3D"Times New Roman, Times, serif"><a
href=3D"/careers/default.asp"><span class=3D"direct"><font
color=3D"#006699">sometext</font></span></a></font></strong></td>
</tr>
<tr>
<td align=3D"left" valign=3D"top" colspan=3D"2" height=3D"1" ><img
src=3D"/images/1PixGray.gif" width=3D"130" height=3D"2" alt=3D""/></td>
</tr>
<tr>
<td align=3D"left" width=3D"1" height=3D"1"></td>
<td height=3D"1" align=3D"left" width=3D"131"><strong><a
href=3D"/careers/default.asp"><span class=3D"direct"><font color=3D"#006699"
size=3D"2" face=3D"Times New Roman, Times, serif">Services
A to Z</font></span></a></strong></td>
</tr>
<tr>
<td align=3D"left" width=3D"1" height=3D"1"></td>
<td height=3D"1" align=3D"left" width=3D"131"> </td>
</tr>
<tr>
<td align=3D"left" width=3D"1" height=3D"1"></td>
<td height=3D"1" align=3D"left" width=3D"131"> </td>
</tr
>
<tr>
</table>
</div>
<div id=3D"Layer3" style=3D"position:absolute; width:733px; height:420px;
z-index:1; left: 208px; top: 187px;"> <marquee>
<strong><em><font color=3D"#999999">upload</font></em></strong><font
color=3D"#999999"><strong><em>
multiple files to a disk,<em><strong>Upload file size limit is
10MB.</strong></em> </marquee>
</font>
<table width=3D"100%">
<tr>
</tr>
</table>
<table width=3D"100%">
<tr>
<td height=3D"133">
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"100%" border=3D0>
<TR> </TR>
<TR>
<TH noWrap align=3Dleft bgColor=3Dkhaki> </TH>
</TR>
<TR>
<marquee>
<TH noWrap align=3Dleft width=3D"20%"
bgColor=3Dkhaki> upload multiple
files to a disk, store extra file upload info in a
database </TH>
</marquee>
</TR>
<TR>
<marquee>
upload multiple files to a disk, store extra file upload
info in
a database
</marquee>
</TR>
</TABLE>
<TABLE cellSpacing=3D2 cellPadding=3D1 width=3D"90%" bgColor=3Dwh=
ite
border=3D0>
<TR>
<TD height=3D"59" colSpan=3D2><form name=3D"file_upload"
method=3D"POST" ENCTYPE=3D"multipart/form-data" OnSubmit=3D"return
ProgressBar();" Action=3D"<%=3DPostURL%>">
<Div ID=3Dfiles>
File 1 : <input type=3D"file" name=3D"File1"> Description 1 :
<Input Name=3D"Desc-File1" Size=3D50>
<br>
File 2 : <input type=3D"file" name=3D"File2"> Description 2 :
<Input Name=3D"Desc-File2" Size=3D50>
<br>
File 3 : <input type=3D"file" name=3D"File3"> Description 3 :
<Input Name=3D"Desc-File3" Size=3D50>
</Div>
<Input Type=3DButton Value=3D"Add a file" OnClick=3Dreturn(Expand())
Style=3D"border=3D0;background=3Dyellow;cursor:hand"><br>
<input Name=3DSubmitButton Value=3D"Submit =BB" Type=3DSubmit><br>
</Form></TD>
</TR>
<TR>
<TD height=3D"59" colSpan=3D2>
<P> </P>
<font
color=3D"#FFFFFF"><%=3DForm.SizeLimit%>(<%=3DForm.SizeLimit \ 1024
%></font></TD>
</TR>
</TABLE></td>
</tr>
<tr>
<td><div align=3D"center"><font color=3D"#9933FF" size=3D"1"
face=3D"Arial, Helvetica, sans-serif"><a
href=3D"existing%20documents.htm"><strong>home</strong></a><strong>
| <a href=3D"Network.htm">about the us</a> | <a
href=3D"Network.htm">our
services</a> |<a href=3D"Diagaram.htm"> Technical support</a>
| <a href=3D"procedure.htm">contact
us</a></strong></font></div></td>
</tr>
</table>
<p> </p>
<p> </p>
<p> </p>
<p><br>
</p>
</div>
<SCRIPT>
//Open window with progress bar.
function ProgressBar(){
var ProgressURL
ProgressURL =3D 'progress.asp?UploadID=3D<%=3DUploadID%>'
var v =3D
window.open(ProgressURL,'_blank','toolbar=3Dno,location=3Dno,directories=3D=
no,status=3Dno,menubar=3Dno,scrollbars=3Dno,resizable=3Dyes,width=3D350,hei=
ght=3D200')
return true;
}
</SCRIPT>
<Script>
//Expand form with a new File fields if needed.
var nfiles =3D 3;
function Expand(){
nfiles++
var adh =3D '<BR> File '+nfiles+' : <input type=3D"file"
name=3D"File'+nfiles+'"> Description '+nfiles+' : <Input
Name=3D"Desc-File'+nfiles+'" Size=3D50>';
files.insertAdjacentHTML('BeforeEnd',adh);
return false;
}
</Script>
<div id=3D"Layer3" style=3D"position:absolute; width:440px;
height:478px; z-index:3; left: 157px; top: 137px;"></div>
<!-- InstanceEndEditable --><img src=3D"images/itDept.png"
width=3D"954" height=3D"140">
<div id=3D"Layer6" style=3D"position:absolute; width:57px; height:45px;
z-index:2; left: 73px; top: 32px;"><img src=3D"images/Globe.gif"
width=3D"48" height=3D"48"></div>
</div>
<div id=3D"Layer2" style=3D"position:absolute; width:166px; height:191px;
z-index:2; left: 33px; top: 221px; background-color: #FFFFFF;
layer-background-color: #FFFFFF;">
<div align=3D"left"> </div>
<table width=3D"100%" border=3D"2" bordercolor=3D"#666666">
<tr>
<td height=3D"23" bgcolor=3D"#FFFFFF"> </td>
</tr>
<tr>
<td height=3D"20" bordercolor=3D"#FFFFFF" bgcolor=3D"#FFFFFF">
<div align=3D"left"><a href=3D"#" onMouseOut=3D"MM_swapImgRestore()"
onMouseOver=3D"MM_swapImage('Image8','','images/Homecolum.png',1)"><img
src=3D"images/Homecolum1.png" name=3D"Image8" width=3D"155" height=3D"26"
border=3D"1"></a></div></td>
</tr>
<tr>
<td height=3D"20" bordercolor=3D"#FFFFFF" bgcolor=3D"#FFFFFF"><a
href=3D"Registeration.asp" onMouseOut=3D"MM_swapImgRestore()"
onMouseOver=3D"MM_swapImage('Image9','','images/RegCol.png',1)"><img
src=3D"images/RegCol1.png" name=3D"Image9" width=3D"155" height=3D"26"
border=3D"1"></a></td>
</tr>
<tr>
<td height=3D"20" bordercolor=3D"#FFFFFF" bgcolor=3D"#FFFFFF"><a
href=3D"sitefolder/aminlogin.asp" onMouseOut=3D"MM_swapImgRestore()"
onMouseOver=3D"MM_swapImage('Image10','','images/UploadCol.png',1)"><img
src=3D"images/UploadCol1.png" name=3D"Image10" width=3D"155" height=3D"26"
border=3D"1"></a></td>
</tr>
<tr>
<td height=3D"26" bordercolor=3D"#FFFFFF" bgcolor=3D"#FFFFFF"><a
href=3D"Login.asp" onMouseOut=3D"MM_swapImgRestore()"
onMouseOver=3D"MM_swapImage('Image11','','images/loginCol.png',1)"><img
src=3D"images/loginCol1.png" name=3D"Image11" width=3D"155" height=3D"26"
border=3D"1"></a></td>
</tr>
<tr>
<td height=3D"23" bordercolor=3D"#666666"
bgcolor=3D"#FFFFFF"> </td>
</tr>
</table>
</div>
<div id=3D"Layer4" style=3D"position:absolute; width:920px; height:2px;
z-index:5; left: 28px; top: 185px; background-color: #CCCCCC;
layer-background-color: #CCCCCC; border: 1px none #000000;">
<div align=3D"center"><img src=3D"images/anibline2b.gif" width=3D"900"
height=3D"2"></div>
</div>
<div id=3D"Layer5" style=3D"position:absolute; width:475px; height:23px;
z-index:6; left: 457px; top: 154px;"><a href=3D"#"
onMouseOut=3D"MM_swapImgRestore()"
onMouseOver=3D"MM_swapImage('Image14','','DifferentTemplate/Images/Home1.pn=
g',1)"><img
src=3D"DifferentTemplate/Images/Home.png" alt=3D"Home" name=3D"Image14"
width=3D"94" height=3D"29" border=3D"0"></a><a href=3D"#"
onMouseOut=3D"MM_swapImgRestore()"
onMouseOver=3D"MM_swapImage('Image13','','DifferentTemplate/Images/Services=
1=2Epng',1)"><img
src=3D"DifferentTemplate/Images/Services.png" alt=3D"Services"
name=3D"Image13" width=3D"94" height=3D"29" border=3D"0"></a><a
href=3D"aminlogin.asp"
onMouseOut=3D"MM_swapImgRestore();MM_timelineGoto('Timeline1','1');MM_timel=
inePlay('Timeline1')"
onMouseOver=3D"MM_swapImage('Image15','','DifferentTemplate/Images/Upload%2=
0Files1.png',1);MM_setTextOfLayer('submanu','','%3Ca
href=3D%22aminlogin.asp%22%3E%3Cfont size=3D%222%22%3EUpload %0D%0A
general files%3C/font%3E%3C/a%3E%3Cfont size=3D%222%22%3E | %3Ca
href=3D%22aminlogin.asp%22%3EUpload %0D%0A forms%3C/a%3E | %3Ca
href=3D%22default1.asp%22%3EView General files%3C/a%3E | %3Ca
href=3D%22../Forms/formsview.asp%22%3EView %0D%0A &amp;
Download forms%3C/a%3E%3C/font%3E');MM_timelineStop('Timeline1')"><img
src=3D"DifferentTemplate/Images/Upload%20Files.png" alt=3D"Upload"
name=3D"Image15" width=3D"94" height=3D"29" border=3D"0"></a><a
href=3D"default1.asp" onMouseOut=3D"MM_swapImgRestore()"
onMouseOver=3D"MM_swapImage('Image17','','images/search1.png',1)"><img
src=3D"images/Search.png" alt=3D"Search Web" name=3D"Image17" width=3D"94"
height=3D"29" border=3D"0"></a><a href=3D"#" onMouseOut=3D"MM_swapImgRestor=
e()"
onMouseOver=3D"MM_swapImage('Image16','','DifferentTemplate/Images/About%20=
Us1.png',1)"><img
src=3D"DifferentTemplate/Images/About%20Us.png" alt=3D"About Us"
name=3D"Image16" width=3D"94" height=3D"29" border=3D"0"></a>
</div>
<div id=3D"submanu" style=3D"position:absolute; width:474px; height:22px;
z-index:0; left: 458px; top: 194px; background-color: #CCCCCC;
layer-background-color: #CCCCCC; border: 1px none #000000; visibility:
visible;"></div>
</body>
<!-- InstanceEnd --></html>
____________________________________________