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

    exist Session Variable?

    Thanks, implemented it.:) wbr J.Saischek
  2. JoernSaischek

    exist Session Variable?

    I know it is a simple question, but my brains seem blocked today. How can I test if a session variable exists? (I'm not interested in the value)
  3. JoernSaischek

    error handling routine

    use regular expressions. can be used with VBscript, Jscript,Javascript.<br><br>for a start :<A HREF="http://www.siteexperts.com/paradise/getResource.asp?r_id=1592" TARGET="_new">http://www.siteexperts.com/paradise/getResource.asp?r_id=1592</A><br><br>there are also a lot of articles at <A...
  4. JoernSaischek

    No Submit on Error

    uups, some errors are always lurking <br><br>for using onSubmit vs. submit (includes a useful description of Javascript with forms)<br>read:<br><A HREF="http://www.webreference.com/content/jssource/chap16.html"...
  5. JoernSaischek

    No Submit on Error

    Dear DonP,<br><br>I could identify 2 possible sources:<br>a) remove the coma after: form.keywords.value==&quot;&quot;)<br><br>b) if your searchtype is a select this will not work, this works only for text & hidden input fields. <br><br>I tested the follwowing function, it should...
  6. JoernSaischek

    paging

    Hi jakhan,<br><br>there is also the possibility to do the paging in the db. this reduces workload between db-server and webserver.<br>example:<br><A HREF="http://www.4guysfromrolla.com/webtech/062899-1.shtml" TARGET="_new">http://www.4guysfromrolla.com/webtech/062899-1.shtml</A> for...
  7. JoernSaischek

    No Submit on Error

    do not use a submit button, just a simple button with onclick=&quot;whatever(this.form)&quot;<br><br>then in the function whatever(f) {<br>isOK=....<br>If (isOK) {<br>&nbsp;&nbsp;f.submit();<br>} <br>else {<br>&nbsp;alert(....<br><br>of course there should be no onsubmit event in the form tags
  8. JoernSaischek

    Info on sets

    where can I find info/examples on sets (aside from sqlbol)?<br><br>thank you
  9. JoernSaischek

    multiple search words / one column in WHERE statement

    pass the search phrase to a sp,<br>parse it, build the where part of @mynewsearch<br>@mynewsearch=N'SELECT ..&nbsp;&nbsp;FROM ...'+CHAR(13)<br>@mynewsearch=@mynewsearch + N'WHERE '+@wherestr<br><br>and then execute sp_execute @mynewsearch<br><br>

Part and Inventory Search

Back
Top