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 Mike Lewis 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. avantgd

    Sitemap without Role Managements

    Thank you for the help and the sample code. I think I understand how it works. However, how do you handle setting the sitemap node to false in the web.sitemap?
  2. avantgd

    Sitemap without Role Managements

    I am relatively new to ASP.Net 2.0 and am working on an application for our company similar to ASP.Net Time Tracker 2.0. I want to use a similar web.sitemap but my web host does not allow role management to be enabled on our shared server. How do I create a similary sitemap, i.e. menu items...
  3. avantgd

    IIS 6.0 and session variables

    We support an ASP application that uses session variables. After 8 months of working fine, the application has stopped working. After we log in, go to an edit page and click "Submit", the user is returned to the home page because a seesion variable is empty. The server shows the...
  4. avantgd

    Using ASP.Net 2.0 & 1.0

    We are begining our first ASP.Net 2.0 project; however, we still need to support several ASP.Net 1.0 applications. I have been unable to find answers to the following: 1. Can .NET Framework 1.0 and 2.0 be installed on the same server? Or is 2.0 backwards compatible? 2. Can Visual Studio...
  5. avantgd

    Two .Net applications on the same site

    We currently have one .Net applicaton on our site using forms authentication. We need to add a second applcation with forms authentication. Each application has its own login page, database, and user group. I tried looking to figure out using roles, but that does not address having two...
  6. avantgd

    Determine if ASP Page is called by Robot

    Thank you for your response. How do I know if it is a known bot? Is there somewhere to get a list or do I have to compile it myself?
  7. avantgd

    Determine if ASP Page is called by Robot

    I want to determine if a page is being called by a robot or a user clicking through our site. I know there is a way to do this because I have heard or people doing this; however, I need some help. Thanks!
  8. avantgd

    Control display / update format of field

    I have a table with a field called Material # that is 18 characters. When I display this field on the form, I only want to show the right 10 characters. When a user updated the field, I need to pad the left with zeroes, "0", update the table and then only display 10 characters. I have tried...
  9. avantgd

    Query CSV File on Linux Machine

    Thank you everyone for your help. I was able to find out that the server is using ChiliSoft ASP which is different than traditional ASP. My program so far is: strPath = getServerPath() & "/" Set objConnection = CreateObject("ADODB.Connection") Set rstEntries = CreateObject("ADODB.Recordset")...
  10. avantgd

    Query CSV File on Linux Machine

    I have determined that the server can emulate ADO. I have started my program as follows: Set objConnection = CreateObject("ADODB.Connection") Set objRecordSet = CreateObject("ADODB.Recordset") strPathtoTextFile = Request.ServerVariables("PATH_TRANSLATED") objConnection.Open "Provider=???;" &...
  11. avantgd

    Query CSV File on Linux Machine

    I appreciate the last link provided. It was very helpful. However, because the server is Linux, I don't think the Microsoft.Jet.OLEDB.4.0 provider will work. Please correct me if I am wrong. Can someone tell me what would be the provider on a linux machine?
  12. avantgd

    Query CSV File on Linux Machine

    I have been unable to determine if the server can emulate ADO. I thought it might be best to write a test page and see if it works. I have never used ADO to read a CSV file. Can you help me get me started? thanks!
  13. avantgd

    Query CSV File on Linux Machine

    Please excuse my ignorance concerning the question posed about the server. The server is provided via a web host. I was told it was a Linux server with Active Server pages enabled. I am almost positive it is an ASP server other than Microsoft IIS, but I do not know which one. If that is...
  14. avantgd

    Query CSV File on Linux Machine

    I need to query / display information a CSV File on a Linux Server using ASP. I have done this a lot on Windows servers. However, I am new to Linux. Any help is greatly appreciated.
  15. avantgd

    Updating field based on record count

    I am a novice to moderate SQL person in need of some expert level assistance. I am trying to write a stored procedure that updates a value in a table based on the sort order. For example, my table has a field "OfferAmount". When this field is updated, I need to resort a sub-set of the records...
  16. avantgd

    ASP Component Method does not work

    I am runnig IIS 5.0 on my Windows XP machine for development purposes, specifically ASP. WHen I run the following code: strThisPage = request.ServerVariables("Path_Translated") Set filesys = CreateObject("Scripting.FileSystemObject") strDir = filesys.GetParentFolderName(strThisPage) Set dir...

Part and Inventory Search

Back
Top