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. fillup07

    Here's a slowball for you. I have a

    I you can use the name property in the input field. So, if you have these buttons (note: I added the value property): <INPUT type=&quot;image&quot; name=&quot;imageField&quot; value=&quot;something&quot; src=&quot;one.gif&quot; onClick=&quot;submit();&quot;> <INPUT type=&quot;image&quot...
  2. fillup07

    How do I know if a checkbox is checked?

    The request.form(&quot;checkboxname&quot;) will return the value(s) (separated by commas if more than one) in the &quot;value&quot; property. -Phil fillup07@hotmail.com If my post was helpful, please give me a star!
  3. fillup07

    Output ASP as Microsoft Word Doc - 2 issues

    Yeah, i'm playing around with that right now. Thanks a lot. I think I am going to do it that way .... without the data-source. Thanks a lot... Phil -Phil fillup07@hotmail.com If my post was helpful, please give me a star!
  4. fillup07

    Output ASP as Microsoft Word Doc - 2 issues

    Yeah... that's what I was playing with last night. Here's the problem though... I want a page full of different labels... How should I do it? It looks like it'd be pretty tough to figure out what goes where for each label individually? Would it be possible to actually create a mail-merged...
  5. fillup07

    Output ASP as Microsoft Word Doc - 2 issues

    I am currently using this to output a file as a Microsoft Word document Response.ContentType = &quot;application/msword&quot; Response.AddHeader &quot;Content-Disposition&quot;, &quot;attachment;filename=thefilename.doc&quot; It works great... Now I have two issues that I hope will not be...
  6. fillup07

    CSS Layout Help, Footer positioning

    Made a few more changes. Didn't stretch across the menu like I originally wanted, but I like it like this better now. Thanks a lot, works great. -Phil fillup07@hotmail.com If my post was helpful, please give me a star!
  7. fillup07

    CSS Layout Help, Footer positioning

    On, http://www.syscompsjax.com/index9.asp you can see that I am trying to get my footer to position properly. I have been playing around with it a lot but just can't get it to work. I do not want to go to a table design. When the page height does not require a scrollbar (like on the Login...
  8. fillup07

    Double quote

    <% response.write &quot;&quot;&quot;test&quot;&quot;&quot; %> -Phil fillup07@hotmail.com If my post was helpful, please give me a star!
  9. fillup07

    Application variables vs Session variables

    When a user logs in, use this code (once you have the username and stuff) Session(&quot;userID&quot;) = username Then on any page you can get the user name by using Session(&quot;userID&quot;) www.w3schools.com/asp/ -Phil fillup07@hotmail.com If my post was helpful, please give me a star!
  10. fillup07

    Application variables vs Session variables

    They don't need cookies. -Phil fillup07@hotmail.com If my post was helpful, please give me a star!
  11. fillup07

    Quotes in SQL statments

    &quot;SELECT Message.Time, Message.Amount, Message.[Free Text] AS Sender, DSum('[Amount]','[Message]','[Time]<= #' & DateAdd('h',-2,[Time]) & '# And [Type ID] = 'cp'') AS Population FROM Message WHERE [Message]![Type ID]='cp'&quot; That is what your SQL stmt looks like all together. Make sure...
  12. fillup07

    caching a logging out

    code? -Phil fillup07@hotmail.com If my post was helpful, please give me a star!
  13. fillup07

    Please help with the strSQL statement syntax

    It looks to me like there might be one or more missing spaces. But what you just need to do is response.write the sql statement that is generated and post it here. -Phil fillup07@hotmail.com
  14. fillup07

    Please help with the strSQL statement syntax

    To diagnose SQL errors, the easiest thing to do is add a Response.Write strSQL instead of executing it. That way you can see the exact code that is being produced. Try that, if you still can't figure it out, paste the results here. -Phil fillup07@hotmail.com
  15. fillup07

    caching a logging out

    Yes I suggest killing the session too. Do that - along with the ASP redirect (instead of Javascript) -Phil fillup07@hotmail.com
  16. fillup07

    Getting login and password

    I also suggest using Sessions. Just make it when they register, this is executed: Session(&quot;username&quot;) = thename And on the next page you can do: Resonse.Write(Session(&quot;username&quot;)) -Phil fillup07@hotmail.com
  17. fillup07

    caching a logging out

    Why not just use <% response.redirect=&quot;index.asp&quot; %> -Phil fillup07@hotmail.com
  18. fillup07

    window.location with ie5 and win98 doesn't work

    Well a redirect in ASP is just: <% response.redirect page %> But if you need that javascript alert, and want to continue in Javascript, then replace your entire window.location.href stuff with just: location=xpara I got that from: http://www.w3schools.com/js/tryit.asp?filename=tryjs_location...
  19. fillup07

    window.location with ie5 and win98 doesn't work

    Well a redirect in ASP is just: <% response.redirect page %> But if you need that javascript alert, and want to continue in Javascript, then replace your entire window.location.href stuff with just: location=xpara -Phil fillup07@hotmail.com
  20. fillup07

    window.location with ie5 and win98 doesn't work

    If you do want to, I'll show you how to do it in VBS -Phil fillup07@hotmail.com

Part and Inventory Search

Back
Top