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 strongm 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. 23kStudios

    How to change URL of browser when submitting a form.

    I mean of course the asp file is called aspscript.ASP ... its supposed to process the form, then it redirects to the wanted page. <% Set Mailer = Server.CreateObject("SMTPsvg.Mailer") Mailer.FromName = "Vertex Campaign Brief" Mailer.FromAddress= "Ryan@23k.com" Mailer.RemoteHost = "mail.23k.com"...
  2. 23kStudios

    How to change URL of browser when submitting a form.

    Does netscape not understand ASP? On netscape my page simply prints out all the ASP code... instead of showing it & changing to success.html. What could be wrong with it, god i don't think i like ASP :P
  3. 23kStudios

    How to change URL of browser when submitting a form.

    Yeah i tried that right after i posted the question lol. I'm not too familiar with ASP =/ More of HTML/Javascript/CSS/C++ kind of guy. Thanks dude!
  4. 23kStudios

    How to change URL of browser when submitting a form.

    Hey thanks man!!! That did work =) One other question... How do i add more than 1 recipient to recieve the information from the forum? Mailer.AddRecipient "Mark", "Mark@23k.com" That's what i have right now... Do i simply do: Mailer.AddRecipient "Mark", "Mark@23k.com; Tom, Tom@23k.com" etc...
  5. 23kStudios

    How to change URL of browser when submitting a form.

    I got a form going on... http://www.23k.com/vertex_form/form.html When you push submit information is sent to an email address, and everything is fine. I created a "submission successful page" @ http://www.23k.com/vertex_form/success.html But when you push submit it opens aspscript.asp (which...
  6. 23kStudios

    How to bold text to output to Email??

    Got a form going on, and i want things to be bolded that come out, like each of the items category in bold then just regular text. Right now i have everything reguarly coming out, but i want to bold the titles =( Here look at this... strMsgHeader = "<STRONG>SAP Invite Form Information...
  7. 23kStudios

    Someone SIMPLIFY this code?

    Jeff dude your the man =) And i filled in the spaces for the null's now. The only problem i saw with the previous Forward button is that it always added a 0 in front to everything but i took care of that with some simple if's for checking if it's >= 10 or lower than 10. Going to give this a...
  8. 23kStudios

    Someone SIMPLIFY this code?

    Do you know what the difference would be in code so i can just change it around for a Back button with the exact same format as this? So if your on page 3, it changes to 2 - and image 2 highlights (2.jpg) and everything else is 1.jpg (unhighlighted). var nextpagenum = ((pagenum+1) > 15) ? 1 ...
  9. 23kStudios

    Someone SIMPLIFY this code?

    Wow jeff, thanks so much man i will definitely have to give that a try!!!!! Whats your house address i'm sending a stripper over immidiately, haha your amazing ;) I checked it and it seems to be workin!!!!!!! Does it go back to 1 when you hit 15?
  10. 23kStudios

    Someone SIMPLIFY this code?

    Is there any way to simplify this incredibly??? function goForward() { var page = getpagenumber(); //gets the URL of image frame var otherpage = parent.image.location.href; //checks through all possible URLs of Image frame and then puts to next one. if (page == "01.html") {...
  11. 23kStudios

    Need Help with images changing depending on another Frame?

    But what i'm thinking the problem is even with the onload in the new opening top frame, the lower frame doesn't automatically refresh so how would it change. I'm not that familiar with CSS i didn't know pictures could be in hover states as well? How do i set images into states like that with...
  12. 23kStudios

    Need Help with images changing depending on another Frame?

    Or basically, what could be easier is... if i had an ONLOAD javascript command that changed a certain picture in the other frame automatically just because its opened. Then that would be taken care of but wouldn't it change back to normal if i mouse overed it? ughh!! frustrating.
  13. 23kStudios

    Need Help with images changing depending on another Frame?

    Hey all, Got a big, kind of tough question about Javascript. Here's the deal i have the main site for 23k studios. Check out the older version here... http://www.23k.com/portfolio.html Now i have this split up into 2 frames now where the navigational images (grey ones) at the bottom &...

Part and Inventory Search

Back
Top