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 strongm 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: dr00bie
  • Order by date
  1. dr00bie

    Help with ASP app for tracking training sessions

    You are correct, this will only be used by 1 person (maybe another in the future), and will only be used when a massive training session is taught. We have a standard browser configuration that all users use (cross-browser compliance is still a priority though, in case the browser configuration...
  2. dr00bie

    URL parameter in a href tag

    How about this? <a href="http://www.montereyleads.com/contactform.cfm?prodline=1&source=1&boat=<%=Request.QueryString("ID")%>" target="_blank" onmouseover="MM_swapImage('Button_Brochure','','images/Button_dlbrochure2.gif',1)" onmouseout="MM_swapImgRestore()"><img...
  3. dr00bie

    Help with ASP app for tracking training sessions

    I have been working on a Training database here at work, and have almost finished it, but am lacking a way to insert and update a bunch of records at once. I am needing to figure out how to insert up to 450 records from an ASP page, but the kicker is that I need for the user to choose an...
  4. dr00bie

    Fresh Install of SQL Server 2005

    I need to know how to backup the SQL Server 2000 databases and then restore them to SQL Server 2005. Our current setup is Windows 2000 with SQL Server 2000, although we need to format and fresh install Windows 2003 and SQL Server 2005. Do I just need to use the Backup Database dialog in EM...
  5. dr00bie

    Link target displaying in link text in Firefox

    Thanks! I just added, media="print" to the print css and that took care of it (it will only be rendered on print). Thanks, Drew
  6. dr00bie

    Link target displaying in link text in Firefox

    I am trying to help a coworker at a different facility troubleshoot their website. The problem is that in Firefox, the links show up with the link target in the link text, fouling up the design of the page. I am really not sure what is causing this, I can't see anything in the code that would...
  7. dr00bie

    Next/Previous Navigation using CSS

    Thanks for your reply... I believe that is what I'll do. Thanks, Drew
  8. dr00bie

    Next/Previous Navigation using CSS

    I am using Macromedia Dreamweaver code to show/hide the links... <div id="resultsnav"> <ul> <% If MM_offset <> 0 Then %> <li><a href="<%=MM_moveFirst%>">|< First</a></li> <li><a href="<%=MM_movePrev%>">< Previous</a></li> <% End If ' end MM_offset <> 0 %> <% If MM_offset = 0...
  9. dr00bie

    Next/Previous Navigation using CSS

    I am updating our Intranet from table-based design to CSS and am having problems getting my first/previous/next/last navigation to look right. Basically it shows |< First and <Previous links if the user is not on the first page and shows the Next > and Last >| links if the user is not on the...
  10. dr00bie

    AJAX and ASP Response.Write

    There was a mistake in the code above, document.form1[ctlName3].Value=info.epi; needs to be changed to, document.form1[ctlName3].Value = info.epi; Since I am so new to javascript, I don't have an explanation, but it doesn't work without the "=" having spaces before and after. Thanks, Drew
  11. dr00bie

    AJAX and ASP Response.Write

    I finally figured this out. I decided to use ASP to write out a JSON string, then eval it in the javascript. Here is the updated code, The ASP page that writes out the data, Dim rsName Dim rsName_numRows Set rsName = Server.CreateObject("ADODB.Recordset") rsName.ActiveConnection =...
  12. dr00bie

    AJAX and ASP Response.Write

    I am using AJAX to return a name from the database so that the user inputting data knows that they input the correct register # (a unique number for each person in the db). Here is the interface code, <label for="RegNo" class="required">First Name:</label> <input type="text" id="RegNo"...
  13. dr00bie

    Width of Fieldset not working in IE

    Thanks! Drew
  14. dr00bie

    Width of Fieldset not working in IE

    Thanks for the reply. I removed the width: 95%; and replaced it with min-width: 95%; This still didn't make the fieldset strech out, but it did accomplish what I was trying to do, which was to keep the questions from wrapping (I know that they still could on a lower resolution). Thanks, Drew
  15. dr00bie

    Width of Fieldset not working in IE

    Yes it is. I have uploaded 2 screenshots... http://www.swvtc.dmhmrsas.virginia.gov/IE.jpg http://www.swvtc.dmhmrsas.virginia.gov/FF.jpg Sorry for the size, I didn't want to skimp on the details... Drew
  16. dr00bie

    Width of Fieldset not working in IE

    I am fairly new to CSS... If I open the page in Firefox, the fieldset streches across the page, if I open it in IE, it doesn't strech across the page (or 95% of the page). Drew
  17. dr00bie

    Width of Fieldset not working in IE

    I am trying to set a fieldset width to 95%, but this seems to only work in Firefox. Anyone know of a workaround? http://www.swvtc.dmhmrsas.virginia.gov/style.htm\ Thanks, Drew
  18. dr00bie

    Setting Label Caption doesn't work as expected

    Ok... I am a dummy! Sorry for wasting your time genomon... My problem was that my label was not long enough to show the month, but it was throwing me off because it would show "Physicals Due - " and then stop. When I removed the dash, it showed up like "Physicals Due J". Thanks for spurring...
  19. dr00bie

    Setting Label Caption doesn't work as expected

    I have a report that when opened, it opens a form named Months that has a dropdown of all of the months of the year, when the user selects a month and clicks Get Report, the report is loaded and the record source is set to a stored procedure (yes, it is an ADP) with the month as a parameter...
  20. dr00bie

    Strange issue with Paging navigation

    Where is pagecnt declared? What is pagecnt? Drew

Part and Inventory Search

Back
Top