Ola pessoal, é o seguinte, copiei um codigo de FORUM aqui do site e não consigo fazer funcionar de jeito nenhum, não acha o BD... o script é assim :  <!--#INCLUDE file="../config.inc" --> <% '  Some Global Functions  Function ChkString(string) 	if String = "" then string = " " 	string = replace(string, "'", "''") 	ChkString = string End Function %>  <html>  <head>  <title>Add</title> <style> 	a:link   {color="#000080";text-decoration:underline} 	a:visited{color:"#000080";text-decoration:underline} 	a:hover  {color:red;text-decoration:underline} </style> </head>  <body bgcolor="#FFFFFF" text="#000080" link="#000080" topmargin="5"> </body> </html> <% '  Procedure to add A Category to the database Sub add_Cat   '  Has the form been filled in?   If request.QueryString("do_it") = "true" then     set my_conn= Server.CreateObject("ADODB.Connection")     my_Conn.Open ConnString="DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=C:\Inetpub\wwwroot"     StrSQl = "INSERT INTO category (cat_name) values ('" & ChkString(Request.Form("cat")) & "')"     my_conn.Execute StrSql      my_conn.close     set my_conn = nothing         Response.Write "<p align=""center""><strong><font face=""veranda, Arial, Helvetica"" size=4>Category Added</font></strong></p>"    Else  o BD esta na pasta C:\Inetpub\wwwroot  o que fazer  socorro e obrigado  fabio