Jasiek’s Blog

Jasiek’s Blog header image 4

Entries Tagged as 'Dreamweaver'

ASP: Provider error ‘80004005′

March 24th, 2007 · Comments Off · Dreamweaver, MS Access

Use the following steps to modify the connections file with user id and password:
ONE
From the Site Manager open the Connections folder and locate the ASP file with the same name as your connection. Open this file with UltraDev and look at the source code in code view.
Locate the line that reads:
MM_MyConnection_STRING = “dsn=MyDSN;”
Modify the connection [...]

[Read more →]

Tags:

Save Delete Button

September 18th, 2004 · Comments Off · Dreamweaver

Dreamweaver creates automatic Save or Delete actions. This modification allows both actions to be performed from the same form:
< %
' Check to see if delete button was pressed
If (Request("delete")“”) then
Set MM_editCmd=Server.CreateObject(”ADODB.Command”)
MM_EditCmd.ActiveConnection=MM_WayneSR_STRING
MM_editCmd.CommandText=”DELETE from Service_Requests_tbl where ServiceReqID =” &Request.Form(”MM_recordID”)
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
Response.Redirect(”adminservicerequests.asp”)
End If
‘End of DELETE Record
%>

[Read more →]

Tags: