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 SkipVought 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: emissions
  • Order by date
  1. emissions

    File Renaming with Fileup

    I wonder if anyone can help??? I currently developing a small application that allows a user to select a number of files (jpg) and upload them to the server. I want the files uploaded to automatically renamed, say something like - gallery01_01.jpg and the next file being gallery01_02.jpg but...
  2. emissions

    calling asp from javascript

    Help??? I'm trying to populate a textarea that is assembled using javascript for editor purposes, now I need to populate the textarea with information stored in a database. I have a connection and data from the database displayed on the page, just can't get it to display in the textarea/iframe...
  3. emissions

    populate with asp data

    doesn't solve the issue, as the information has html formatting tags, and these need to be kept, but not displayed to the end user and also, displayed in the textarea with formatting... <script language= "JavaScript" type= "text/javascript" > //this calls displayEditor function...
  4. emissions

    populate with asp data

    Help??? I'm trying to populate a textarea that is assembled using javascript, now I need to populate the textarea with information stored in a database. I have a connection and data from the database displayed on the page, just can't get it to display in the textarea ready to be edited.,.. code...
  5. emissions

    dynamic tooltip

    I display database result in an ASP page. One of the fields I display in the result is Event. I want to use tooltips (or titles) to show the corresponding Message details of that particular Event when a user mouseover on a value of Event. For example, the table I show in an ASP is as under...
  6. emissions

    dynamic tooltip

    I'm basically looking to have a tooltip with additional information related to object within a database, I've been using this 'wz_tooltip'; onmouseover='return escape(" & objRecordset.Fields("Message") & ")' contained within <a> tag. Nothing displayed. It does see something though as the...
  7. emissions

    Help with positioning...

    okay maybe not an overlap, but the right column sits at the bottom of the center section... this is standard in both ie and ff... I've just cut and pasted the code from Dan and the same thing happens... cheers for the assistance so, far..l.
  8. emissions

    Help with positioning...

    I'm testing/designing on Firefox and Explorer... My DOCTYPE is "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" and here's a sample of the code; <!-- content section --> <div id="content"> <div id="sidecolumn"> <div id="sidecontain"> <p>This is a little...
  9. emissions

    Help with positioning...

    pressed the wrong button... as you can see I have a container, and within that 3 columns, the left is fine and in the right position, the right and center just over lap... can anyone help ??
  10. emissions

    Help with positioning...

    Anyone, Been at this for a few days, and seem to be beating my head agianst the wall... #content { width: 760px; height: auto; background: #ffffff url(../images/content.png) no-repeat top; margin: 0; padding: 0; } #sidecolumn { background : url(../images/side_column.png) no-repeat; float ...
  11. emissions

    Date Issue

    Hey all, I've got a slight issue, I hope someone can help... I have a date, that specify's and 'EventDate', what I looking to do, is work out from the 'EventDate', I want to work out what day is the first of that week. I've tried looking on the web, and even looked at some asmples but can't...
  12. emissions

    event calendar

    Help please, I've been working on a event calendar for my website, I've got thing working fine. The month view is great, but what I'm looking for is produce a week view, with a link from the month view. I've used the code below, which I found through another link on the forum (thnx to that...
  13. emissions

    Export data

    The code for the button is; <% If Not rsStatus.EOF Or Not rsStatus.BOF Then %> <a href="<%= Request.ServerVariables("SCRIPT_NAME") %>?excel=y"><img src="../img/table/print_button.gif" width="86" height="27" border="0" align="bottom"></a> <% End If ' end Not rsStatus.EOF Or NOT rsStatus.BOF %>...
  14. emissions

    Export data

    'reopen the connection to export the results' as the connection is closed and not cached...
  15. emissions

    Export data

    Help, needed with exporting data from a rs... I've got a page, that queries a table in the database, and displays the results in a table... Now I'm looking to export that data to a PDF file... I have a button that, passes the data to the file... but everytime, if returns BOF or EOF is true...
  16. emissions

    Help needed with recordset

    <% Dim rsStatus__VarStatus rsStatus__VarStatus = "0" If (Request.QueryString("status") <> "") Then rsStatus__VarStatus = Request.QueryString("status") End If %> <% Dim rsStatus Dim rsStatus_numRows Set rsStatus = Server.CreateObject("ADODB.Recordset") rsStatus.ActiveConnection =...
  17. emissions

    Help needed with recordset

    Hi, I have a page that sends a variable via a url link <a href="status.asp?status=PRO">link</a> this displays the correct results on the status, now when goto post the same results to an csv file, I get BOF.EOF error stating that there is no records or they have delete, can anyone help?
  18. emissions

    Export RS as excel

    Okay followed both instructions on this page, and on the link page... I'm about a third there, I have a link to the page which creates itself into a .xls file... cool... But not really what I'm looking for. I have a page that already has create the recordset/query, I want the user to click a...
  19. emissions

    Export RS as excel

    I've read the link, finally... but confused, doesn't explain any thing about auto export..
  20. emissions

    Export RS as excel

    correct, that only prompts the user, but with the correct filename 141105.xls

Part and Inventory Search

Back
Top