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 Wanet Telecoms Ltd 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 tyreejp

  1. tyreejp

    AJAX question

    I got it now. Thanks Vic. -- James
  2. tyreejp

    AJAX question

    So, if it's server side JS (myscripts.js), then it'll keep going? -- James
  3. tyreejp

    AJAX question

    Hey all- If I kick off an ajax polling script that hit the server every 30 seconds or so... would it continue to run if a user browsed to another page on the site? -- James
  4. tyreejp

    Impersonate User Account (LogonUser API)

    Does anyone have experience using the LogonUser API (advapi32.dll) to gain acccess to a network share? Thanks! -- James
  5. tyreejp

    access a file posted to pare with javascript?

    If page A posts an xml file to page B, is it possible to process access the posted file on page B via javascript, similar to how you would access a posted file with asp and the request object? Thanks James -- James
  6. tyreejp

    WebClient.UploadFile vs old html postmethod

    I laughed at that too. :) What you just said makes a lot of sense. I'm home now but will mock up something here and see if it works and let you know! -- James
  7. tyreejp

    using html post to upload file

    lol... they gave up and sent me here. Thanks anyway! -- James
  8. tyreejp

    using html post to upload file

    I have two web pages. Page A has an old school form to post a file to another page. Code: <form id="form1" action="WebForm1.aspx" method="post" enctype="multipart/form-data"> <input type="file" id="Upload" /> <input type="submit" id="submit" value="send" /> </form> Problem is...
  9. tyreejp

    WebClient.UploadFile vs old html postmethod

    Thanks -- James
  10. tyreejp

    WebClient.UploadFile vs old html postmethod

    security reasons". None of our web services are exposed to customers. -- James
  11. tyreejp

    WebClient.UploadFile vs old html postmethod

    My goal is to have a web page on the front end waiting for our customer to post a file to it. That page will take tthe posted file which is xml and call a web service on a middle tier server passing it the xml. The WebControl.UploadFile method I was using was to just test it all. Our customer...
  12. tyreejp

    WebClient.UploadFile vs old html postmethod

    I hate to be a pest... :( I changed it to the following and still in the other page (two seperate .aspx pages) Request.Files is empty. Any other suggestions?? I'm getting desperate! :) <form id="form1" action="WebForm1.aspx" method="post" enctype="multipart/form-data"> <input...
  13. tyreejp

    WebClient.UploadFile vs old html postmethod

    I've never heard of that before. Could you provide an example? -- James
  14. tyreejp

    WebClient.UploadFile vs old html postmethod

    I have two web pages. Page A has an old school form to post a file to another page. Code: <form id="form1" action="WebForm1.aspx" method="post"> <input type="file" id="Upload" /> <input type="submit" id="submit" value="send" /> </form> Problem is, the receiving side's code...
  15. tyreejp

    aspx page &amp; &quot;virtual directory not configured as an app&quot;

    I know how to resolve the error "This error can be caused by a virtual directory not being configured as an application in IIS". What I want to be able to do is drop this webpage and it's config file anywhere and have it work. Can that be done and if not, why? -- James

Part and Inventory Search

Back
Top