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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. mother911

    ASP & Javascript & Passing values in querystring

    the problem passing so much information in the querystring is it leaves you wide open for the hacker babies... for instance, a page which is to edit the users information opens like the following. edit.asp?name=Bob&ID=12 can easily be changed to edit.asp?name=' or 1=1&ID=' or 1=1 it seems...
  2. mother911

    ASP & Javascript & Passing values in querystring

    you could use onclick form1.submit and use hidden form variables posted to the new page... on popup.asp you would add request.form(&quot;action&quot;) and request.form(&quot;ID&quot;) or you could use: &quot;popup.asp?action=Edit&ID=<%=rs(&quot;ID&quot;)%>&Name=<%=rs(&quot;NAME&quot;)%>&quot...
  3. mother911

    self replicating website

    the replicated website could also be Bob.mydomain.com if that is easier.
  4. mother911

    self replicating website

    I would like to create self replicating, or personalized sites based on the original URl hit at the website...for instance http://www.mydomain.com/bob would redirect to www.mydomain.com/index.html and Bob's info would now fill in various variables on that page. It could even redirect to...
  5. mother911

    Remove Highlight

    border = &quot;0&quot; in the image tag Mother
  6. mother911

    two submit buttons one form

    yeah yeah...I know...someone has done it before but I can't find it. I have a simple form. 4 fields, one insert, but....two different landing pages. one for each button. fill out form, get more info page1.asp fill out form, goto full application page2.asp help please Mother
  7. mother911

    run command and post form to next page

    hey Leb, I have the command and all that stuff down fine. I need to run the command before the post form runs, so I can populate the url for the form to post to from the commands output. If I submit once, it runs the command and inserts the needed data, but...it submits to the default url for...
  8. mother911

    How can we message someone else who is online

    For instance....lessee....Lebisol.... Hi Leb...thx for your help the other day
  9. mother911

    Input validation - password confirmation

    Hey Rich.. Sorry been a little hectic here, and forgot to come back and check on your reply. UD4 requires this version of yaromat's check form http://www.yaromat.com/dw/em/checkform.406.mxp it was last updated in July on the 16th. By setup, I simply meant that both fields must be checked as...
  10. mother911

    run command and post form to next page

    I'm trying to submit a form which will run a stored procedure (as a command) and the output of that command will either a. show an error value with text to explain the error (username already taken) and return the url of the first page. or b. return no error value (error=0) and post the form...
  11. mother911

    prob in Loading buttons and pics

    Hey!... Isn't this a great place to vent your annoying problems. I can say the only way I can help with your issue is I would need a URL so I can look at whats going wrong. While i'm waiting, i'm gonna post a problem of my own so I will keep checking on you. Good luck, and don't worry, there's...
  12. mother911

    Input validation - password confirmation

    Hi Rich, I hate to do what you asked us not to do. BUT I use yaromat (as seen in my earlier post) and it works fine for password field comparisons. However im using asp. Perhaps there is an issue with how you are setting up the check form that could be at fault. If not, ignore this completely...
  13. mother911

    yaromat and stored procedure

    Odd ending to this story, someone at another forum went to the site, looked over the code, dl'ed it and saved it locally, inspected the yaromat behavior and clicked ok, and it worked...he mentioned it to me and I did the same. Perhaps somewhere during all this testing, I deleted something from...
  14. mother911

    yaromat and stored procedure

    >Yaromat=JS=ClientSide >ClientSide will ALwaays get executed before ServerSide >Is your stored procedure called on the same page? or is it >Add.asp-->StoredProc.asp >vs. >Add.asp(with storedProc.) <--> ><% If Request(&quot;Submit&quot;) <> &quot;&quot; Then %> It is definitely this way, stored...
  15. mother911

    yaromat and stored procedure

    I have a page to isnert new user information. I originally used and insert, and yaromat's check form behaviour, and it worked perfectly (yaromat fires from an onclick on the submit button). I changed the insert to a stored procedure, and the problems began. first problem, the page...

Part and Inventory Search

Back
Top