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 bkrike 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: jakeyg
  • Content: Threads
  • Order by date
  1. jakeyg

    security problem between websites

    Hope this is the right forum for this question, sorry if it isn't The website my webhost points to is at www.gallowtech.co.uk and everything works fine there :-) My other website www.teamsurge.com is stored in a subdirectory on my webhost at www.gallowtech.co.uk/teamsurge The source of...
  2. jakeyg

    Conformance to web content accessibility

    Regarding the conformance to web content accessibility guidelines 1.0 on the w3c site I've used the online validator webxact watchfire to go through my site to check for validity and it says that my site is fine. I've gone through the list of things I had to check manually it said and they're...
  3. jakeyg

    target ="_blank"

    As target ="_blank" isn't supported in proper web standards, what's the recommended method for opening a new browser window ? ta
  4. jakeyg

    Tables on a CSS styled page

    I've got a CSS controlling my layout while the HTML/ASP controls the content I'm still using tables to show my tabular data though, think that's still allowed ;-), but while I can set the tables overall width using either the CSS or a "width=" directly, I can't contol the width of the "td"s by...
  5. jakeyg

    When is not a cookie, a cookie?

    Been developing a website and being using a subdirectory of my mainsite to develop it online. I've just uploaded V1 of the code for approval to the customer site. There are no cookies in the site at all Everything works fine if you "accept all cookies" on both sites, but if the privacy...
  6. jakeyg

    CSS border control

    When the pages of my site are viewed in Firefox, the text wraps in the correct place, bout 1/4 of an inch to the left of the edge of the window, but in IE the wrap is about an inch to the right of the window. The layout is done using CSS and I think i've narrowed it down to teh "content" div...
  7. jakeyg

    passed the end

    When searching through some code in .NET I noticed at the bottom the message "Passed the bottom of the document" Is it "passed" or "past" in generel usage cause "passed" looks wrong somehow?
  8. jakeyg

    Text Size

    What are the conditions for getting the Text Size option in IE (and other browsers ???) working? In tek-tips for example, changing the Text Size only affects some of the headings like "Member Moderated" and "Programmers" but headings like "HTML, XHTML & CSS (Cascading Style Sheets) Forum" are...
  9. jakeyg

    using an image as a link using CSS

    I'm trying to use CSS to it's fullest as everyone keeps telling me to ;-) I've got a menu on the left with 5 buttons in a vertical block, with an image in the background of each "cell". The text in each "cell" acts as the hyperlink at the moment, but i want the whole "cell" to act as the...
  10. jakeyg

    Autostarting download

    I'm trying to create a page which gives you a download dialog box for a file as soon as you open the page I've got the following code which when works fine as an ASP or html file downloading an .EXE but I'm trying to make an auto download for a .PDF and/or .TXT file. Can you only autodownload...
  11. jakeyg

    Return rows without duplicates

    select Users.* from Users inner join Property on Users.UserID = Property.JAID where Groupid = 24 order by Property.lot This query brings back all the records I want but with some duplicate rows which I want to exclude. I can get SELECT DISTINCT to work for 1 column queries, but not multiple...
  12. jakeyg

    Page layout via CSS

    All my sites have tables in to set the layout I've read a few posts around various places about using CSS instead, tables being "dirty" as someone said in a post here :-) What are the advantages/disadvantages of using CSS instead of <TABLE>? Is there a FAQ or how-to guide someone can point me...
  13. jakeyg

    Displaying value in dropdown thats been loaded from the database

    I've got the following combo box on my form <select size="1" name="Location"> <option value="UK"> UK </option> <option value="Europe"> Europe </option> <option value="Americas"> Americas </option> </select> I've loaded the recordset fine, but how do I get...
  14. jakeyg

    to apostrophe or not to apostrophe

    Which side of this fence does everyone sit on? http://news.bbc.co.uk/1/hi/magazine/4102728.stm
  15. jakeyg

    4th of July

    Why is the 4th of July called that in dd/mm/yyyy date format and not July the 4th in american mm/dd/yyyy? and where did the american date format come from, it's never made much sense as the time format hh/mm/ss is incrementing down, that the date format increment jumps around.
  16. jakeyg

    where?

    what did i say wrong in the 4th July thread that got it deleted?
  17. jakeyg

    Using janus gridex 2000b in Win2003

    I have a janus gridex 2000b grid in one of my intranet systems which works fine on XP and Windows 2000 server but the customer wants their new server to run Windows 2003 Server. I've cleared out most of the problems I've found porting it across and I'm left with 2 :- A: When trying to refresh...
  18. jakeyg

    passing values from asp/html to cold fusion

    I need to pass from an html page to a cold fusion page a value either as a session variable (which I think cold fusion ignores) or as a querystring or however it's done. How do I do a Request.QueryString in cold fusion and then evaluate it? I've got this as the syntax for a CF if statement, but...
  19. jakeyg

    Inserting carriage returns in an email

    got the following function to send emails which works peachy only problem is I want a carriage return at the end of the line I've tried <BR>, %0D%0A and vbCrLf in various guises and places and I always end up with <BR>, %0D%0A or vbCrLf in instead of a carriage return It's called in an ASP...
  20. jakeyg

    Using objFileSys to check a file exists

    I'm using an if-then-else statement, to check if a file exists before reading it in. if (objFileSys.FileExists("C:\hello.txt")) then Set objTextStream = objFileSys.OpenTextFile ("C:\hello.txt",1) else "File doesn't exist message" end if Whether the...

Part and Inventory Search

Back
Top