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

    Hard Drive repair from bootable CD?

    Can anyone suggest a good application for analysing and repairing Hard Drives that will run from a bootable CD? I recently attempted to format and reinstall Windows XP, I have done this many times before, however while installing I received an error message that a particular file could not be...
  2. irate

    ASP XSL to PHP XSL

    I am trying to convert an XML & XSL script from ASP to PHP. I can get the XML and XSL to work fine, but for ASP i am using msxml to apply javascript functions. Of course I cannot use that in PHP, so I was wondering if there is a way to do the same thing? Here is the ASP: <% dim url...
  3. irate

    Help with cross browser CSS

    I want to position a layer inline within an HTML document, but I dont want it to move the other elements. I have done this in Internet Explorer, the layer is positioned absolutly, but without a top or left value so that it stays inline, then underneath the div I put an image to hold the place...
  4. irate

    Position a div under link over text.

    I have this test page with a popup div. I want to make the page so that when you click the link the div pops up just under the link, over the other text, and when it is hidden it doesnt move any of the elements on the page, but I dont want to use any measurements or absolute positioning. Can...
  5. irate

    Help, mail stuck in outbox because too big

    I have outlook 2k3 on win xp pro sp1, connected to a hotmail account. I created a mail and sent it but the attchment was just over 1 meg so hotmail sends back "Task 'Hotmail (1) - Sending' reported error (0x80004005) : 'Outlook's request to the server failed. The server responded 'Message size...
  6. irate

    CSS difine a class with another class

    Is it possible to create a class that is simply one or more other classes with added attribures. Eg. If I had the following classes in a generic style sheet: .bgcBlack { background-color: #000000; } .fgcWhite { color: #FFFFFF; } .ffMonospace...
  7. irate

    Create GIF file in ASP?

    I would like to know if it is possible to create a GIF image using the filesystem object in ASP in a similar way to creating a text file. I know you can create other files using custom objects, such as PDFs but I was thinking that if I knew the format of a GIF image and had the raw data then I...
  8. irate

    Indexing Service Query Language

    I have an index for my web site that I am querying from an ASP script. It basically takes a user inputted string and searchs for it in the index. It does this by simply adding '$CONTENTS ' to what ever the user inputs, however if they input nothing I want to return all the index. I am a very...
  9. irate

    Current Target of an iframe

    I have a page with an iframe, and a button. When you click the button I want it to capture the CURRENT location of the iframe. If I use the iframe.src it will return the INITIAL location. Does anyone know how I can get the current URL of the iframe. Note: I have also tried...
  10. irate

    ORER BY in an IF ?

    The following code in the query analyzer gives me an error: Server: Msg 156, Level 15, State 1, Procedure searchDynamicContent, Line 18 Incorrect syntax near the keyword 'ORDER'. Can someone tell me what I am doing wrong please? CREATE PROCEDURE searchDynamicContent @dynamicArea...
  11. irate

    complex frameset traget

    I have pop up window that needs to target the document it came from. But, that document is in a frameset with in a frameset. frameset 1 (index.html) <frameset rows=&quot;12%,88%&quot; cols=&quot;100%&quot;> <frame src=&quot;top.html&quot;> <frameset rows=&quot;100%&quot...
  12. irate

    equiv of ASP chr(13) ?

    I have a textarea that I am selecting text from to edit with a text range, i want to find the returns/new lines and add a list tag: var textSelected = document.all.editbox.document.selection.createRange() var addList = textSelected.text; addList.replace(***,'<li>') Where the *** is in the...
  13. irate

    DHTML Editor

    I am using an active-x control from microsoft for users of a website to edit certain pages: http://msdn.microsoft.com/archive/default.asp?url=/archive/en-us/dnaredcom/html/cncpt.asp I have the component working and customised as i want, but the save function built in to this only saves to...
  14. irate

    multidimential arrays ?

    Question one: is it possible to make a 2d array in ASP? ie. a set of paired values Question two: is it possible to then make that array a session? I need to keep a set of paired values in session from a form, so if this is not possible can anyone think of a way to do this? thanks...
  15. irate

    Auto selecting options in a form

    This is my code: <script> function colourformat(theform,colourformat,prompttext) { inserttext = prompt(&quot;\n<font style=\&quot;color:&quot;+colourformat+&quot;;\&quot;>xxx</font>&quot;,prompttext); theform.about.value += &quot;<font...
  16. irate

    Global ASA not updating!?

    I am using a standard ASA to track the users of my intranet. It works tracking users logging on but it doesnt seem to track them log off...? Do I need to set an application timeout or something, i would like this counter to be very accurate. Example, i go to a page on my intranet and it says...
  17. irate

    cookie methods

    I am using cookies to keep users logged in to a web site, I want a log out button that deletes the cookie, can someone tell me the best way to get rid of a cookie? Is it possible to do something like: response.cookies(&quot;mywebsitelogincookie&quot;).delete ? thanks
  18. irate

    redirection problem

    I am using the following code to redirect the browser if the users machine does not have a specific cookie, the page it is redirecting to DOES exist and is in the correct place but for some unknown reason I get a 404 page not found error. Can anyone shed some light on this? <% currentUser =...
  19. irate

    dynamic forms validation

    I have a form with a drop down and a number of checkboxes. The drop down simply has numbers 1 to 5 in it. The checkboxes are created by asp and there can be any number of them depending on the database. The checkboxes are named 'item' & the number of check box so for example the first...
  20. irate

    dynamically improve the target area of buttons

    In the Macromedia White Paper on Flash usability there is the paragraph: According to Fitt ’s Law,“The time to acquire a target is a function of the distance to and size of the target.” Simply stated,this means the bigger a button is the easier it is to click;and the easiest item to click on...

Part and Inventory Search

Back
Top