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

    table unwanted resizing

    If you use percentages your cells should stay the same. Also make sure that you set the table width as a percentage such as: <table width=&quot;75%&quot; height=&quot;40%&quot;> <tr><td width=&quot;25%&quot; height=&quot;25%&quot;>content here</td></tr> <tr><td width=&quot;25%&quot...
  2. bludaisy

    Place NULL into SQL Server Datefield

    If that doesn't work, here's another option that i have right in my SQL update statement: <cfquery NAME=&quot;query&quot; DATASOURCE=&quot;dsn&quot;> UPDATE tablename <cfif #FORM.date# IS &quot;&quot;> SET date = Null, <cfelse> SET date=#CreateODBCDate(FORM.date)#, </cfif>...
  3. bludaisy

    Fixed font size

    Try using altavista's style guide... <style type=&quot;text/css&quot;><!-- body,p,div,span,th,td{font-family:arial,sans-serif;font-size:12px} dl{line-height:16px} dd{margin-left:14px} a:active{color:red} a:hover{color:#09c} .bc{font-size:16px;font-family:arial,sans-serif} .txt{color:#1E1E1E}...
  4. bludaisy

    Mailto with auto subject inserted

    Here ya go. mailto:you@yourserver.com?thesubject
  5. bludaisy

    previous next functionality

    yup. just create a variable for your starting row: <CFPARAM NAME=&quot;StartRow&quot; DEFAULT=&quot;1&quot;> then, you can either ask the user for maxrows, or declare your own, then output your query: <cfoutput QUERY=&quot;queryName&quot; STARTROW=&quot;#StartRow#&quot...
  6. bludaisy

    Dreamweaver Forms!! Help Please!

    MAKU, You may also want to check Matt's Script Archive: FormMail where you can set your forms up to send emails through your server, you just need to make sure that certain files are there which your server admin will be able to tell you. You can also get the files from the web site, and it's...
  7. bludaisy

    Password protected page

    you'll need to include the Application.cfm file to the html page, but may need to change the file extension of the html page to cfm for it to work.

Part and Inventory Search

Back
Top