Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

New and Not understanding

Status
Not open for further replies.
1. <Form action=?? method=?? name=??> What is needed here?

Same as php action="blah.asp" method="post" or method="get" name="form1"

2. <INPUT id=SAV style="WIDTH: 74px; HEIGHT: 40px" type=submit size=17 value=Save width="200" tabindex="20" onclick="??"> What do I put for the onclick value?

again same as in php as this is usually a javascript action so onclick="javascriptfunction())

3. How do I name the script and/or script sub routines.

Not sure what you mean by this.



}...the bane of my life!
 
Are you asking about script that executes on the web server or in the browser client?
 
GuitarDave,

All the examples I've seen use the script locally so don't use action="blah.asp", so I was trying to figure out how to call individual routines/subroutines within the defined script.

I was wondering if the call format was:

Code:
action="main"

with idividual button/element:

onclick="subroutine",
onclick="main.subroutine",
or
onclick=vbscript(main.subroutine)"

Just trying to get the call right!

YMR


 
Thanks All,

I finally got a work around for this problem. Got Access to build the page, then copied and modified the NavBar button to do what I want (most of it)

Anyway have the users working until I can get clean code into the page and add the functions I need.

I'll post current solution for discussion when I get a chance.

I still have to get the Afterupdate processing (I know it's called something else in VBS but don't know what yet) to work, so will continue with that once I catch up on my back work.

DBS4M
Edit/Delete Message
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top