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 wOOdy-Soft 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 stevenk140

  1. stevenk140

    Threads and Events

    So how would I stop the thread in close.aspx?
  2. stevenk140

    Threads and Events

    Hello, I am opening a ASP.NET page, starting a thread, and would like that thraed to continue running UNTIL the page is closed. How would I stop this thread upon closing the page? Steven
  3. stevenk140

    C# Opening Port

    For custom server code I have written.
  4. stevenk140

    Page Close Event?

    Thanks for the tips guys, this now leads me to another question. I have decided to go with Isadore's approach and do a clean up at the end of a session. My question now is, how do I see when the function protected void Session_End(Object sender, EventArgs e) { //code ... } gets called...
  5. stevenk140

    Page Close Event?

    Is there some event that lets me know when the page has been closed. My problem is I want to delete all files that were created during a viewing of a web page. What is the best way of doing this? Steve
  6. stevenk140

    Running a Command

    I want to run a command like &quot;dir&quot; or &quot;del <filename&quot;. How do you do this in C#? In C\C++ you can do a System(cmd); What is the C# equivalent? Steven
  7. stevenk140

    C# Opening Port

    On my webserver, I would like to open a port for a client to listen to (www.mywebstie.com:2000). How would I do this? Steve
  8. stevenk140

    Create JavaScript Dynamically on PageLoad

    How would I create a javascript function dynamically on PageLoad?
  9. stevenk140

    Byte[] to double.

    Thanks guys.
  10. stevenk140

    Byte[] to double.

    I have an array of bytes which should make up a double. double val; byte[] doub = new byte[8]; doub[0] = arraybytes[20]; doub[1] = arraybytes[21]; doub[2] = arraybytes[22]; doub[3] = arraybytes[23]; doub[4] = arraybytes[24]; doub[5] = arraybytes[25]; doub[6] = arraybytes[26]; doub[7] =...
  11. stevenk140

    Hashtable

    Thats a great idea. Thank you.
  12. stevenk140

    Hashtable

    Hello, What if I have the value and want to get the key? (and I don't want to iterate through all values to find the matching key index) Steven
  13. stevenk140

    Hashtable

    I have a hashtable and a value that matches up with a key. Is there an easy way of getting the key from the value? (Without search through all values to find the index) Or is a SortedList better from going back for forward between keys and values? Steven

Part and Inventory Search

Back
Top