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!

Search results for query: *

  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
  16. tyreejp

    Help w/ Stylesheets and Schemas...

    What's the difference between an xml stylesheet and xml schema? -- James
  17. tyreejp

    Very green question about Server Side js

    Thanks Dan, that does help. -- James
  18. tyreejp

    Very green question about Server Side js

    I'm very new to javascript and everything I've read says that database access should be done with SSJS as opposed to CSJS. How is this accomplished? Simply by storing a .js file on the server and calling functions from it? -- James http://www.microsoftjr.com
  19. tyreejp

    ADO.NET 2.0 &amp; Datasets/Datatables

    I've been looking everywhere for built in functionality in ADO.NET 2.0 to somehow query and join on two or more datatables in a single dataset. I always see the same question that follows that question, "why don't you do the join in your sql." Easy, One table comes from DB2 and the other comes...
  20. tyreejp

    How to implement Connection Pooling

    Ok, so then I do need a Connection object declared globally so the threads that are created can all take advantage of it? Or does the mere fact that I'm using the exact same connection string each time I create a new instance of the Connection object (with ConnectionPooling=True set of course)...

Part and Inventory Search

Back
Top