DWUTKA at marlow.com
DWUTKA at marlow.com
Thu Jan 15 13:37:31 CST 2004
FP is a good tool. I used it to become familiar with HTML. I let it write the HTML, then I would take a look at what it did. From time to time I still use FP to make quick formatting changes. However, FP XP comes with Microsoft Scripting Editor 9. (I know FP 2000 had an older version, which was nice, but 9 is WAY cool). That MSE will auto complete, and auto tag stuff as you are righting raw HTML. It is extremely handy to create web pages with it. Plus, it acts almost exactly like VB, when it comes to writing code (VBScript or ASP). Drew -----Original Message----- From: Bob Heygood [mailto:bheygood at abestsystems.com] Sent: Wednesday, January 14, 2004 10:34 PM To: Access Developers discussion and problem solving Subject: RE: [AccessD] Access n Front Page Thanks Drew More and more I think that whatever I can do without Front Page's help is best. -----Original Message----- From: accessd-bounces at databaseadvisors.com [mailto:accessd-bounces at databaseadvisors.com]On Behalf Of DWUTKA at marlow.com Sent: Tuesday, January 13, 2004 10:09 AM To: accessd at databaseadvisors.com Subject: RE: [AccessD] Access n Front Page This is down and dirty, but the following is a relatively simple .asp page, which displays an .mdb table in HTML format. You can then edit the values, and submit it, and it will change the values in the table. It requires that you have an ID field (the code is currently set to use field 0 as the ID). <html> <% dim cnn dim rs dim i dim strSQL dim intCount if request.Form("Submit")="Submit" then set cnn=server.CreateObject("ADODB.Connection") set rs=server.CreateObject("ADODB.Recordset") cnn.Provider="Microsoft.Jet.OLEDB.4.0" cnn.Open "C:\Inetpub\domains\airs\Air2000_be.mdb" rs.Open "tblWebFields",cnn,1,3,512 intCount=rs.Fields.Count-1 rs.MoveFirst do until rs.EOF=True for i=1 to intCount rs.Fields(i).value=request.Form(rs.Fields(0).value & "-" & rs.Fields(i).Name) next rs.Update rs.MoveNext loop rs.Close set rs=nothing cnn.Close set cnn=nothing end if %> <head> <title>Dyncorp Field Settings</title> </head> <body> <form name="FieldSettings" method=post> <input type=submit name="Submit" value="Submit"> <table width="100%" border=1> <% set cnn=server.CreateObject("ADODB.Connection") set rs=server.CreateObject("ADODB.Recordset") cnn.Provider="Microsoft.Jet.OLEDB.4.0" cnn.Open "C:\Inetpub\domains\airs\Air2000_be.mdb" rs.Open "tblWebFields",cnn,1,1,512 response.Write "<tr>" & vbcrlf intCount=rs.Fields.Count-1 for i=1 to intCount response.Write "<td width=""" & 100/intCount & """>" & rs.Fields(i).Name & "</td>" & vbcrlf next response.Write "</tr>" & vbcrlf rs.MoveFirst do until rs.EOF=True response.Write "<tr>" & vbcrlf for i=1 to intCount response.Write "<td width=""" & 100/intCount & """>" & vbcrlf response.Write "<input type=""text"" name=""" & rs.Fields(0).Value & "-" & rs.Fields(i).Name & """ value=""" & rs.Fields(i).Value & """></td>" & vbcrlf next response.Write "</tr>" & vbcrlf rs.MoveNext loop rs.Close set rs=nothing cnn.Close set cnn=nothing %> </table> <input type=submit name="Submit" value="Submit"> </form> </body> -----Original Message----- From: Bob Heygood [mailto:bheygood at abestsystems.com] Sent: Tuesday, January 13, 2004 10:08 AM To: Access Developers discussion and problem solving Subject: [AccessD] Access n Front Page Hey to the group, Hopefully this is not too far off. But so much here now has to do with the web. I am looking for some info on editing a record in an Access db from a web browser using Front Page. I have found enough on displaying records, but not on editing existing data. I suspect asp or some such will be involved. best, bob _______________________________________________ AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com _______________________________________________ AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com _______________________________________________ AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com