Recent content by MichaelInScarborough

  1. M

    HTML: How to nowrap two images next to eachother?

    <table style="width:150%">
  2. M

    HTML: How to nowrap two images next to eachother?

    <table style="width:150%">
  3. M

    HTML and Javascript ,?

    <html> <head> <title>Feedback Form</title> <SCRIPT TYPE="text/javascript"> <!-- function get_radiobtn(id) { var r = document.getElementsByName(id ); var cnt = -1; for (i =0; i < r.length; i++) { if (r[i].checked) { cnt = i; return r[cnt].value; } } return ""; } function showSummary(frm) { if...
  4. M

    HTML Code in TextEdit, won't open as HTML anymore. MAC!?

    right click in the browser window. find menu entry "View Source". This should work
  5. M

    how to host my asp.net application 30 day trial?

    brinkster has a 90 day money back guaranty.
  6. M

    Get data from HTML file?

    Select your textbox content, press control-c. use edit/paste in excel
  7. M

    calendar in javascript or php.?

    I suggest that the host web of your website may have a calendar control. does this help or are u developing standalone? If so, what is your server software?
  8. M

    ASP - update a null or blank date?

    <% set conn=Server.CreateObject("ADODB.Connection") conn.Provider="Microsoft.Jet.OLEDB.4.0" conn.Open "c:/webdata/northwind.mdb" conn.Execute "Update tblSample set dateNULL = NULL WHERE ID = 10" %> --------- In case you are in the table design with the cursor on the date field, you can modify...
Back
Top