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

  1. OsieBrown

    Create XML Web Services from ASP

    Hi everyone. I found this article that I thought was extremely helpful. It shows how to create an XML Web Service with ASP 3.0. There is even a download to make it clear. Get the code. http://www.framewerks.com/DeveloperHome.asp The article name is "Web Services with ASP 3.0" Have...
  2. OsieBrown

    Consume Web Services from ASP

    Anyone know how to easily consume a Web Service from ASP. I don't know SOAP, nor do I want to learn at this point. And, my company is not moving to .NET just yet! What I need is an easy way to connect to Web Services from an ASP page. Any clues... Osie Brown
  3. OsieBrown

    Page Expires

    Try using a Session variable. Set a SessionVariable named PageVisited, or something like that. Then in your ASP code you could write If PageVisited Then Do Something else like redirect. If you want to store Session information in a Database, there is a great Object that I use for my sites. You...
  4. OsieBrown

    Display Names of Logged-in users

    Everyone has excellent suggestions. I thought I might add to some. Sessions are the best way to maintain which users are logged in and which are not. There is a Session Object that you can download for a 30Day trial. Go Here...
  5. OsieBrown

    how to pass an object from one page to another

    There are two options to migrating an Object from one pageto another... 1. Server.Transfer will transfer information and variables from one page to another. It is better to use that Response.Redirect because it does not round trip. But only works when you do need to use the same variables on...

Part and Inventory Search

Back
Top