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 Andrzejek 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. dommett

    Using button to pass a path

    OK - new approach I found. Here is the code I have now: <form> <input type="hidden" name="gotolink" value="#"> <input type="radio" onClick="this.form.gotolink.value=this.value;" checked value="UploadImage.asp?Store=Pseohos&Type=cart" > Psephos <BR><input type="radio"...
  2. dommett

    Using button to pass a path

    I'm still getting this: http://www.mywebsite.com/admin/UploadImage.asp?Store=Psephos%26Type%3Dcart
  3. dommett

    Using button to pass a path

    This seems to work except I actually need to send two variables in the URL ie: value="page1.asp?Store=XeniaThrift&Type=Cart" but when I try this, my URL ends up looking like this: http://www.mywebsite.com/admin/?Store=UploadImage.asp%3FXeniaThrift%26Type%3Dcart I tried making the form...
  4. dommett

    Using button to pass a path

    ok - to simplify things let's remove the applet. I just want radio buttons with a standard button that calls another asp file with the value of the selected radio button.
  5. dommett

    Using button to pass a path

    So sorry - here you go: <form method="POST" action="--WEBBOT-SELF--" onSubmit="location.href='../_derived/nortbots.htm';return false;" webbot-onSubmit> <!--webbot bot="SaveResults" u-file="../_private/form_results.csv" s-format="TEXT/CSV" s-label-fields="TRUE" startspan --><input...
  6. dommett

    Using button to pass a path

    I have a form with two radio buttons (soon to be more). Each button has name="shop" but different values. I also have a hover button that calls a URL. Now what I need to do is change the path in the URL based on which radio button is selected. Any suggestions?
  7. dommett

    problem with selected option in drop down

    Oh my gosh!! That was it - how embarrasing. Thanks!!!
  8. dommett

    problem with selected option in drop down

    I have a form with a drop down box that calles the page it is on (business.asp) with the selected value. The call (URL) is fine but once the page reloads, it never has the selected category "selected". Here's the code: intCategoryID = Request.QueryString("SelectedCategory") <form...
  9. dommett

    Sending result for drop down list

    Never mind - I figured out that I needed to change the form method to "Get" instead of "Put" and use the Request.QueryString. Thanks!
  10. dommett

    Sending result for drop down list

    I'm sorry - I don't quite understand. On the first point, I understand that the old data is in the SelectedCategory as it writes that line prior to the submission of the form. I don't understand what you mean when you say: 1) you never actually access it Doesn't the...
  11. dommett

    Sending result for drop down list

    I have a drop down list (in a form) made from a query to a database but when I try to use the form result in the action statement, it holds old data. See my code: <form name="frmCategoryName" method="Post" action="businesses.asp?Category=<%=Request.Form("SelectedCategory")%>"> What category of...
  12. dommett

    Problem with running script locally

    Never mind last post concerning downloading the .asp file. I had a custom error 500;100 set to a file not the correct url. I am back to getting the JET database Engine eroor:Could not delete from specified tables. and again - I know the script is fine. This has to be a system issue.
  13. dommett

    Problem with running script locally

    I'm not too concerned about the script itself - I know it works. This is a local machine set up issue. I just installed a fresh new Win XP pro drive with service pack 2 and with the .net framework 1.1. Now, in Firefox when I go to open the classfieieds/default.asp file I get this pop-up window...
  14. dommett

    Problem with running script locally

    Tables are there and I did check the actual database permissions. Even gave it full control - still no luck. Thanks, Dommett
  15. dommett

    Problem with running script locally

    Here is the error I get when I have permissions set for both Administrator and IUSR accounts: HTTP 500.100 - Internal Server Error - ASP error Internet Information Services -------------------------------------------------------------------------------- Technical Information (for support...
  16. dommett

    Problem with running script locally

    HELP! I installed a classified ads script on my local machine, customized its colors, etc, then installed on my live hosted website. The live site is still running fine but I found my local version is no longer runable. I have reinstalled Win XP Pro since I last worked on it locally so I figure...
  17. dommett

    how to change order of layers during animation

    Newbie here - idiot instructions PLEASE! I am working on my first flash document and I have two layers - each layer containing a text object. I have one of text object of layer1 dropping down and bouncing back up above the text object of layer2. On the way down, I want the text object of layer1...
  18. dommett

    Textbox won't display all text if an ' is in the text

    OK - I feel a little silly. The real problem was I was using value='<%Response.Write....' and I should have been using value="<%Response.Write....". Double quotes instead of single quotes! Thanks everyone for the help!
  19. dommett

    Textbox won't display all text if an ' is in the text

    Andy (and others!), Thanks for the help. I now can see the full text string with apostrophys in the name but using the server.urlencode causes a "+" wherever there is supposed to be a space. (By the way, without the server.urlencode, I only see the text up to the first space.) Do I just have to...
  20. dommett

    Textbox won't display all text if an ' is in the text

    I tried that too and got: "Amy's" came out "Amy%27s"

Part and Inventory Search

Back
Top