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

    OUTER JOIN help

    I think GaryC123 was suggesting that you need to include the underscores for the field Atty_ID or is the field called AttyID? Either way, it won't like Atty ID with a space, unless you use the square bracket notation [Atty ID] SELECT Atty2CaseNew.Firm , TblUniqueAttorneys.Attorney FROM...
  2. yogi77

    Does anyone know how to read META tag values?

    Thank you both emblewembl and Tarwn, this sounds like something I need to go and explore, looks promising though :-) ... I'll let you know how I get on.
  3. yogi77

    Does anyone know how to read META tag values?

    Hi, Can anyone help me? I am using query string to pass parameters, from a page called getlist.asp, to an .asp page, something like this; http://system.company.com/query.asp?username=peter&pwd=password&command=list I get a page of html returned something like this; <HTML> <HEAD> <TITLE>Page...
  4. yogi77

    Get Meta Tag Content

    Hi, Can anyone help me? I am using query string to pass parameters, from a page called getlist.asp, to an .asp page, something like this; http://system.company.com/query.asp?username=peter?pwd=password?command=list I get a page of html returned something like this; <HTML> <HEAD> <TITLE>Page...
  5. yogi77

    Using COM Component to Connect to DB

    Hi, Does anyone have any code samples I could reference for implementing the use of a COM component when accessing a SQL 7.0 database from an ASP page. I want to prevent multiple connections whenever possible. I want to install a component in MTS and hopefully reduce the number of user...
  6. yogi77

    How do I deal with English Web Server and Spanish IE5 Client?

    Hi, I have an English web server servicing a global network of clients. The code is fine for most users, however those clients running Spanish client installs are experiencing problems when trying to evaluate boolean values. For example, the web server may return 'True' but the client code is...
  7. yogi77

    IIS Language Configuration

    Hi, I am trying to install a web application on an Windows 2000 server. My problem arises when the asp.dll processes asp pages and then returns, for example, boolean values. The web app was written in English, however the server has been configured in Spanish. So, rather than returning the...
  8. yogi77

    Change Lower Case to Upper Case

    It's OK thanks, I found it; upper() for changing to upper case and lower() for changing to lower case. pretty intuitive I suppose... &quot;Let us not condemn ignorance, let us condemn the reluctance to share&quot;
  9. yogi77

    Change Lower Case to Upper Case

    Hi, Is there an equivalent of the VB function 'Ucase' in TSQL? I want to perform an update to certain fields, making all entries upper case. At the moment there is a mixture of lower and upper case. Thanks in advance. &quot;Let us not condemn ignorance, let us condemn the reluctance to...
  10. yogi77

    How Can I Disable an 'A' object?

    Hi, I am trying to disabled an 'A' object with an HREF. I am doing something simple like this; <A HREF=&quot;broadcast.asp&quot; DISABLED>broadcast</A> However, when I render the asp the HREF would appear disabled (i.e. the color changes), however the link still responds to mouse clicks. I...
  11. yogi77

    SELECT INTO

    Thanks CCTC1, that's exactly what I was trying to do. It's amaing how simple it looks when someone shows you. &quot;Let us not condemn ignorance, let us condemn the reluctance to share&quot;
  12. yogi77

    SELECT INTO

    HI, I am trying to do something like this within a stored procedure using MS SQL7.0; SELECT field1, field2, field3 INTO @var1, @var2, @var3 FROM table_name WHERE field1 = @passedinarg However, without much joy. Is there a way of doing this or do I need to the long winded version; SET @var1 =...
  13. yogi77

    Updating Time Dynamically

    Using VBScript, ASP, SQL Server 7.0 I am trying to display a countdown on screen to the users in the format of &quot;10:34:44 remaining&quot; however, I would like to change this every second (a bit like you see on the auction sites, with times counting down). Can anyone offer suggestions for...
  14. yogi77

    How Can I Get Last Key Pressed?

    Perfect! Just what I was looking for, thanks!
  15. yogi77

    How Can I Get Last Key Pressed?

    How can I determine what the last key press was in an INPUT type=text using VBScript. I basically want to capture the user pressing the enter key so that I can fire the submit button. Any help would be appreciated, TIA, Yogi
  16. yogi77

    Headers &amp; Footers

    Hi, Does anyone know if there is a way I can programatically supress the default header and footer that IE5 offers when printing from web pages, i.e the URL etc. TIA, Yogi
  17. yogi77

    Creating Excel Documents with ASP

    Good links, this is probably a stupid question but, is it possible to get similar results without the client having Excel installed, i.e. only having Excel installed on the web server and streaming it thru from there? I wouldn't like to rely on the client having Excel installed.
  18. yogi77

    Web Page Printing Question

    Thanks for your replies. That article was particularly interesting and looks as if it would be very good, thanks for pointing it out to me. Unfortunately, not printing via OLE objects using Excel or Word was a pre-requestite for the project, so it sort of knocks that on the head. Looks like...
  19. yogi77

    Web Page Printing Question

    Hi, I am trying to develop functionality in my intranet application that will allow the users to print various reports / material movements lists / pick lists etc from the server-side. I am having partial success, however I would like to supress the print option popup box, i.e. the 'What...
  20. yogi77

    window.history

    Thanks everyone for your help! I implemented the servervariable suggestion posted by Harold and I got just what I wanted! Thanks Again, Yogi

Part and Inventory Search

Back
Top