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