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. qwert62

    Determine Domain

    DotNet, thanks for the help. I am just realizing that my client is using a response.redirect to get to our site, therefore the http_referer doesn't have a value.
  2. qwert62

    Determine Domain

    Is Request.ServerVariables("HTTP_REFERER") only available in ASP.Net? My application uses classic and I am not getting anything returned for this value. I noticed that the http_referer didn't exist when I listed all the request.servervariables. Thanks in advance for any ideas.
  3. qwert62

    Determine Domain

    I am trying to determine a persons domain when they enter a website. For example if the person is entering my website from www.example.com, I want to display www.example.com. Can anybody help with this? I know that Request.ServerVariables("Remote_Host") will display my website's domain, but I...
  4. qwert62

    Problems using Link manager

    Thanks for the effort. I have never had this problem before either. It has me stumped. My guess is that the problem is in the SQL tables/index/relationships themselves.
  5. qwert62

    Problems using Link manager

    I am not sure if this is the correct forum for this problem. I have an access 97 database that has many linked tables (SQL tables). When I try to refersh tables via link manager, I get the following error message: "Application-defined or object-defined error". I am able to refesh some of the...
  6. qwert62

    Problem refreshing linked tables via Link manager

    I have an access 97 database that has many linked tables (SQL tables). When I try to refersh tables via link manager, I get the following error message: "Application-defined or object-defined error". I am able to refesh some of the tables, but not others. Does anybody know what would cause...
  7. qwert62

    Convert HTML in a TEXTAREA

    I am not too familiar with Server.HTMLEncode, but I think I am trying to accomplish the opposite of Server.HTMLEncode.
  8. qwert62

    Convert HTML in a TEXTAREA

    Is it possible to convert HTML tags in a textarea? I am pulling a field out of a database that contains HTML tags. I need to display it in a Textarea without the HTML tags. For example the value in field is: <p style='font-family:verdana;font-size:10pt;'>Dear David,<BR><BR> Thank you...
  9. qwert62

    Assigning a global variable

    Is is possible to create a global variable that can be used throuhgout the DTS package? For example, I want to calculate a date in the first step of the package and have it available for multiple queries within the DTS package. I am new to DTS packages. Thanks in advanced for any sugestions.
  10. qwert62

    Sql Server Timeout

    Thanks to both replies. I ended up running an DBCC Indexdefrag, re-indexing the &quot;corrupt&quot; tables and also added a primary key. The combination of these three actions fixed the problem. Apparently, they frequently add alot of data to these tables and never re-index the tables...
  11. qwert62

    Sql Server Timeout

    I am having a weird situation, Several tables through enterprise Manager will not open to show all records I am getting a timeout. The weird thing is I can open a top N to a point. however if I go one over I get that timeout. Also if I run a select * on this table in Query analyzer It just...
  12. qwert62

    Attributes of Input Type = &quot;File&quot;

    It seems that somebody has walked aay with my HTML reference book. GRRRRRRR. Can I use a value clause with Type = &quot;File&quot;? It doesn't seem to work. Thanks in advance for your help. dave
  13. qwert62

    Changing the width of a drop down

    I am trying to expand the lenght of a drop down box. When displayed on screen I want the drop down to be 28 px. When a user clicks on the drop down arrow to display values, I want the length to expand to a larger value (i.e. 100 px). Is there any way to accomplish this. Thank you in...
  14. qwert62

    Expanding the length of a drop down box

    I am trying to expand the lenght of a drop down box. When displayed on screen I want the drop down to be 28 px. When a user clicks on the drop down arrow to display values, I want the length to expand to a larger value (i.e. 100 px). Is there any way to accomplish this. Thank you in...
  15. qwert62

    Returning the First Value in a Group by clause

    I am kind of new to writing sql queries. I am sure this is a very basic question. How do I return the first value of a field when using a Group by clause. If I link the SQL tables to Access I am able to run the query: SELECT tblName.Field1, First(tblName.Field2) AS ID FROM tblName...
  16. qwert62

    Find if a string exist within another string

    onpnt, Thanks for the response. It was very helpful. I have it working, but if you don't mind, I have one other question. Can I use the RegExp to seach for strings that contain special characters. For example I would like to find how many instances of &quot;[[(Start&quot; are in the search...
  17. qwert62

    Find if a string exist within another string

    I am very new to JavaScript, so please excuse me if this is a basic question. I need to search a given string for the number of times another string exist within the given string. For example if String 1 = &quot;ABCDEFA&quot;, I need to find how many times &quot;A&quot; exist in String 1. I...
  18. qwert62

    Populate a text area via data from drop down

    Thanks very much. It worked like a charm!!!
  19. qwert62

    Populate a text area via data from drop down

    Here is my challenge. I have a textarea that a user currently keys in general data. I need to give user an option to enter in certain keywords. These keywords need to come via a drop down. For example, the user needs to insert the phrase &quot;[[blue color]]&quot; amoungst existing text in...
  20. qwert62

    Extra form feeds for labels

    The printer is not an available choice on the web server.

Part and Inventory Search

Back
Top