Changing FP 2002 database wizardr code

  • Thread starter Thread starter Art
  • Start date Start date
A

Art

How can you change the code created by FP database wizard?

When I go to the HTML view and make changes, FP overwrites
the changes when it saves the page

Do I need another editor?
 
-----Original Message-----
How can you change the code created by FP database
wizard?

When I go to the HTML view and make changes, FP
overwrites the changes when it saves the page

Do I need another editor?

When most people get to this point, they stop using the
Database Results Wizard and start using ASP or ASP.NET
 
-----Original Message-----
How can you change the code created by FP database
wizard?

When I go to the HTML view and make changes, FP
overwrites the changes when it saves the page

Do I need another editor?

When most people get to this point, they stop using the
Database Results Wizard and start using ASP or ASP.NET to
code the page from scratch.

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*========----------
|\=========------------
|| Microsoft Office FrontPage 2003 Inside Out
|| Microsoft FrontPage Version 2002 Inside Out
|| Web Database Development Step by Step .NET Edition
|| Troubleshooting Microsoft FrontPage 2002
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/=========------------
*========----------
 
I appreciate your posting in response to my question.

I tried inserting <%=Left(recordset("link"),10)%>
in the line below where I have indicated but it refuses to
save.

Am I trying to insert it into the wrong place? My goal is
to limit the size of the column link to only 10 characters

Thanks again and I appreciate anything you can add


<!--webbot bot="DatabaseResultColumn" s-
columnnames="f_docnumber,f_entrydate,a31,a35,a36,a37,a38,a3
9,a40,a41,a42,conv_date,link,link2" s-column="link" b-
tableformat="TRUE" b-hashtml="FALSE" b-makelink="TRUE"
clientside b-MenuFormat preview="&lt;font size=&quot;-
1&quot;&gt;&amp;lt;&amp;lt;&lt;/font&gt;&lt;a
href=&quot;.&quot;&gt;link&lt;/a&gt;&lt;font size=&quot;-
1&quot;&gt;&amp;gt;&amp;gt;&lt;/font&gt;" startspan --><%
=Left(recordset("link"),10)%> <%="<a href=""" &
FP_FieldLink(fp_rs,"link") & """>" & FP_FieldVal
 
Back
Top