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: *

  • Users: tyreejp
  • Content: Threads
  • Order by date
  1. 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
  2. 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
  3. 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
  4. 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...
  5. 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...
  6. 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
  7. tyreejp

    Help w/ Stylesheets and Schemas...

    What's the difference between an xml stylesheet and xml schema? -- James
  8. 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
  9. 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...
  10. tyreejp

    How to implement Connection Pooling

    I understand the concept behind connection pooling and I also understand how to create a connection pool via the connection string. What I don't have a grasp of is how to implement it. Do I declare a SqlConnection object that is global in scope when my windows service starts and create a new...
  11. tyreejp

    Record Locking

    Is there anything I can query to determine if records are locked in a transaction before I try and lock them myself? Thanks -- James http://www.microsoftjr.com
  12. tyreejp

    IsolationLevel.RepeatableRead not doing what I thought it would..

    I'm trying to fill a dataset with records in a transaction and have those records locked so no one else can access them until I've made my updates and saved them back to the DB. I execute the code below and my dataset gets the records I want. While the transaction is still open, I alt+tab to...
  13. tyreejp

    ADO.NET and SQLDMO

    I've used the SQLDMO library in the past in a .NET program to scan the network for available SQL Servers running. I'm not the biggest fan of mixing .NET and COM. Does anyone know if there's anything built into the 2.0 Framework that has similar functionality? tia James -- James...
  14. tyreejp

    Views and Indexes

    Hi, I'm working with a view that looks like this... create view [dbo].[vallsearch] as select * from archiveebisql.dbo.search (nolock) union all select * from ebisql.dbo.search (nolock) The two tables I'm union-ing are in two different databases, therefore I can't use schemabinding and...
  15. tyreejp

    Howto Query a Table if I only know it's Object_Id

    Is there a way to query a table if I only know the table's Object_Id? Anything like.... Select * from Object_Name(12345678) TIA! James
  16. tyreejp

    API to scan for available wireless networks

    Does anyone know of an API that could/would be used to scan for available wireless networks in a .NET app? TIA James -- James http://www.microsoftjr.com
  17. tyreejp

    API to browse for available wireless networks...

    Does anyone know of an API that could/would be used to scan for available wireless networks in a .NET app? TIA James -- James http://www.microsoftjr.com
  18. tyreejp

    Programmatically Determine Path to Current User's Desktop

    Is there anyway to programmatically determine the path to the currently logged in user's desktop so I can save a file to that location? Thanks for any help! -- James http://www.microsoftjr.com
  19. tyreejp

    TransparencyKey with VB.NET 2005

    I'm using the following code to use an embedded image and set it as the background of my form. I'm also programatically setting the TransparencyKey so some of the form will be transparent. The end result should show a form that I've drawn to the user in place of the standard squared off form...
  20. tyreejp

    are stored proc parameters passed in clear text?

    If I pass parameters to a stored procedure that I'm calling from inside a VB6 or VB.NET app, do those parameters get sent as clear text? -- James http://www.microsoftjr.com

Part and Inventory Search

Back
Top