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 strongm 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 yongbum

  1. yongbum

    can I create a web app to run a legacy dos app.

    ca8msm that's what i'm asking if I make it a web service and call it from my web app will that not slow down the whole app as each time someone uploads a file and i then call a web service which will not be able to run cause a previous client has called the service, whereas if the processing was...
  2. yongbum

    Can I specify the upload filename without an inputefile control

    Thanks shawn Don't I have to declare the fileUploadTextBox to use its properties?
  3. yongbum

    Can I specify the upload filename without an inputefile control

    Hi How would I specify the file to upload to the server without an inputfile control on the form. When the user clicks the uploadBtn I want to upload file 123.dat. I'm using vb, code snipet appriciated. Thanks
  4. yongbum

    can I create a web app to run a legacy dos app.

    Thanks BoulderBum That's what I was looking for. If this function is running can other clients still upload their files or does this make the whole app. single thread?, I would also need some way of controling in what order clients input gets processed. What I'd thought of doing was...
  5. yongbum

    can I create a web app to run a legacy dos app.

    Thanks for your reply. I'd also like to know how to queue clients input and proccess the queue sequentualy ie. open 1 dos window for the web app and not for each client (session). Do I need to write a web service to achieve this?
  6. yongbum

    can I create a web app to run a legacy dos app.

    Hi I want to write a web app. that does the following: Client uploads a file to the server. This file is placed in a queue of files from other clients waiting to be proccessed. Each file needs to be proccessed individualy by a legacy single user dos application. After proccessing the output is...
  7. yongbum

    how do I window.close after session.timeout

    Thanks TipGiver What I did (and it works) is to redirect to a page which has <body onload="setTimeout('window.close()', 10);">
  8. yongbum

    what do i need to copy from development to production

    hi For an asp.net project what do I need to copy from the development site to the production site apart from the dll in the bin directory
  9. yongbum

    how do I window.close after session.timeout

    Hi, I have the following in code-behind Page_Load Response.appendheader("refresh", convert.tostring(session.timeout * 60) & "; URL=Login.aspx") instead of redirecting on timeout I'd like to do window.close. How do I do this ?
  10. yongbum

    How do i get the curser to become an hourglass.

    Hi, How do I get the cuser to become an hourglass while waiting for an action to complete.
  11. yongbum

    what would cause form variables from 1 user to pass to a 2nd user

    Excuse my ignorance I can't find where cookies are enabled/disabled in the internet property settings. It's probabley ok cause for a single user everything's ok. If you can tell me where to check I will. In the web.config cookiless=false.
  12. yongbum

    what would cause form variables from 1 user to pass to a 2nd user

    It's as if the session memory is getting erased. I started using the session variables cause variables that I was passing between forms where also disappearing.
  13. yongbum

    what would cause form variables from 1 user to pass to a 2nd user

    I'm using application variables and session variables. What session settings are you refering to?
  14. yongbum

    what would cause form variables from 1 user to pass to a 2nd user

    Your input is really appriciated, I'm really strugling with a deadline to meet. At the moment I'm testing this on 1 pc. But when I've run it on 2 pcs, 2 sepearate users the result is the same the session variable is suddenly non existant.

Part and Inventory Search

Back
Top