PatrickPatrick1
9 years agoQrew Trainee
Hide Web URL On An Exact Form
I want to email a non user a link to a quote which they can view online. But I want to hide some of the URL so they don't know how to change the record id at the end and see someone elses quote. When designing web pages I would use a frameset with the following code in the html.
<html>
<frameset border=0 rows="100%,*" frameborder="no" marginleft=0 margintop=0 marginright=0 marginbottom=0>
<frame src="http://www.URL.com" scrolling=auto frameborder="no" border=0 noresize>
<frame topmargin="0" marginwidth=0 scrolling=no marginheight=0 frameborder="no" border=0 noresize>
</frameset>
</html>
This code would show them visitor the same url for any page they visited on the website. Is it possible to do something like this through QuickBase?
<html>
<frameset border=0 rows="100%,*" frameborder="no" marginleft=0 margintop=0 marginright=0 marginbottom=0>
<frame src="http://www.URL.com" scrolling=auto frameborder="no" border=0 noresize>
<frame topmargin="0" marginwidth=0 scrolling=no marginheight=0 frameborder="no" border=0 noresize>
</frameset>
</html>
This code would show them visitor the same url for any page they visited on the website. Is it possible to do something like this through QuickBase?