Flytning af DB
Hej eksperter..jeg har en kode hvor jeg skal have flyttet DB til en anden mappe hvordan gøre jeg det ??
min kode ser ud som..
--------> Kode
<!-- #INCLUDE FILE="config.inc"-->
<HTML>
<HEAD>
<TITLE>Forums</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<LINK REL="stylesheet" HREF="forum.css">
</HEAD>
<BODY BGCOLOR="#c3c08b" LEFTMARGIN="0" TOPMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0">
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="12" BGCOLOR="#c3c08b">
<TR VALIGN="TOP">
<TD ALIGN="center"><H1>www.juby.dk</H1></TD>
</TR>
</TABLE>
<TABLE WIDTH="90%" BORDER="0" CELLSPACING="1" CELLPADDING="12" ALIGN="CENTER">
<TR ALIGN="LEFT" VALIGN="TOP" BGCOLOR="#cac9ab">
<TD colspan="2">
<%
' Read details of all forums on this site.
' Show all of them with statistics in a nice table.
Dim rsForums
Set rsForums = Connect (ForumMDB).Execute ("SELECT * FROM Forums ORDER BY Forum ASC")
rsForums.MoveFirst
%>
<table width="100%" align="center" cellspacing="0" cellpadding="6" border="1">
<tr>
<td width="60%">
<p><b>Forums</b>
</tr>
<%
While Not rsForums.EOF
%>
<tr>
<td><a href="forum.asp?ForumID=<%= rsForums("ForumID") %>"><B><%= rsForums("Forum") %></B></a>
<BR>
<BLOCKQUOTE>
<%= rsForums ("Description")%><BR>
<SMALL>[Total Beskeder: <%= rsForums("Posts") %>] [Sidste Besked<%= rsForums("LastPost") %>]</SMALL>
</BLOCKQUOTE>
</tr>
<%
rsForums.MoveNext
Wend
rsForums.Close
%>
</table>
</TD>
</TR>
</TABLE>
<BR>
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="6" ALIGN="CENTER">
<TR ALIGN="CENTER" VALIGN="TOP">
<TD COLSPAN="2" ALIGN="LEFT">
<H6>[Velkommen juby]<BR>
</H6>
</TD>
<TD ALIGN="RIGHT" WIDTH="20%">
</TD>
</TR>
</TABLE>
</BODY>
</HTML>
er der nogen som kan hjælp ??
