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
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
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
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...
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...
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...
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...
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.