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

Recent content by wendigt

  1. wendigt

    checkbox question

    Add another parameter to your sub. onclick=&quot;AddDelUser '<%=rsconn(&quot;user_id&quot;)%>','<%=strGroup%>','<%=intCount%>', this.value&quot; ... sub AddDelUser (user,group,count,value)
  2. wendigt

    Redirecting to PDF that resides on another http server

    I use Response.Redirect &quot;http://www.yoursitehere.com/yourdoc.pdf&quot; My asp looks for cookies. If my cookies are present, then I read the cookies, create a database item logging the cookie values, then automatically redirect to the pdf. It works here, I see the pdf displayed. If...
  3. wendigt

    Redirecting to PDF that resides on another http server

    Unfortunately no. The web user clicks a link on one server, which redirects them to another server, asking for them to fill out a form of personal information, then redirects them to the first server and the pdf. This is a Response.Redirect, not a hyperlink.
  4. wendigt

    String to Array(without delimiter!)

    You probably need to get each character of your string and stick it into an array that is the same size of the length of your string. Something like this: For i = 1 to Len(str) char = Left(str, 1) array(i-1) = char str = Right(str, Len(str) - i) Next Good luck!
  5. wendigt

    Redirecting to PDF that resides on another http server

    Is it possible to redirect to a PDF that resides on another web server? In previous threads, I've seen examples of using ADODB.Stream objects to read and write binary data. I get errors when I attempt to LoadFromFile. I think this is due to the file not being on disk, rather on another web...
  6. wendigt

    Response.Redirect of pdf files

    Right, I want to show pdf, not download it. An important note also is that the pdf resides on another server, not locally on disk. I've also tried the code at bottom of this post, but get error: &quot;The script reported following error: File could not be opened. (error number 0x800A0BBA hex)...
  7. wendigt

    Response.Redirect of pdf files

    Help! I need to do a redirect to pdf files. The web browser seems to redirect to the server, but the page is not loaded. It only loads upon refresh. I've tried the following: Response.ContentType = &quot;application/pdf&quot; Response.Redirect &quot;http://www.....file.pdf&quot; I've also...

Part and Inventory Search

Back
Top