Hi all,
I have posted the problem in the ASP forum before, and was directed here.
I have the following script using QueryString:
<%
Dim connectDel, recstDel
Dim FeatureID
Set connectDel = Server.CreateObject("ADODB.Connection")
connectDel.Open("DRIVER={Microsoft Access Driver (*.mdb)};" _
& "DBQ=" & Server.MapPath("Estimation.mdb"))
Set recstDel = Server.CreateObject("ADODB.Recordset")
FeatureID = Request.QueryString("FeatID")
recstDel.Open "DELETE from FuncFeat WHERE FeatID=" & FeatureID, connectDel
Set recstDel = Nothing
Set connectDel = Nothing
Response.Redirect("DeleteFeatures.asp")
%>
How can I properly align a list shown using QueryString in html since now its all centre align and there is no spacing between the delete link and "FeatName"?
Any help is appreciated
I have posted the problem in the ASP forum before, and was directed here.
I have the following script using QueryString:
<%
Dim connectDel, recstDel
Dim FeatureID
Set connectDel = Server.CreateObject("ADODB.Connection")
connectDel.Open("DRIVER={Microsoft Access Driver (*.mdb)};" _
& "DBQ=" & Server.MapPath("Estimation.mdb"))
Set recstDel = Server.CreateObject("ADODB.Recordset")
FeatureID = Request.QueryString("FeatID")
recstDel.Open "DELETE from FuncFeat WHERE FeatID=" & FeatureID, connectDel
Set recstDel = Nothing
Set connectDel = Nothing
Response.Redirect("DeleteFeatures.asp")
%>
How can I properly align a list shown using QueryString in html since now its all centre align and there is no spacing between the delete link and "FeatName"?
Any help is appreciated