Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Everything posted by pulpfiction

  1. This might help you a little bit...http://www.codefixer.com/tutorials/insert_into_database.asp
  2. I couldnt find anyother mistake ... Trying to type fast I do lot of such typos, so i always check spellings.....
  3. Try giving "yes | no | 0 | 1" for the optional parameters...var winpops=window.open(popurl,"Task","width=400px,height=400px,toolbar=no,location=yes,status=no,scrollbars=yes,menubar=no,resizable=no");http://msdn.microsoft.com/library/default....hods/open_0.asp
  4. A minor spelling change... on the right side, customers comments, it says"It's better that having only an alarm. Thank you! Mr Thomas, Enfield."It's better than having only an alarm. Thank you! Mr Thomas, Enfield."THAN"
  5. pulpfiction

    java script

    W3Schools has a good online tutorials www.w3schools.com/js/default.aspIf you are looking for a book then try this, "JavaScript & DHTML Cookbook - by Danny Goodman"
  6. In IE, incase of any JavaScript error, If you look at the bottom left corner of the browser, you will find a small triangle with Exclamation mark. If you double click that, it will list the JS errors... Do you see that?? and if there are no errors then a IE symbol will appear instead.
  7. you can also use validator controls to check empty textbox, "requiredfieldvalidator"http://www.w3schools.com/aspnet/control_re...ldvalidator.asp
  8. I tried the above code with buttons and they work fine... may be we need to check the HTML part. Can you post the HTML code??
  9. So the flash header is something like a interactive "progress bar"....
  10. pulpfiction

    PHP

    This example has code and read the comments for explanationhttp://www.phpeasystep.com/workshopview.php?id=6
  11. Scroll down to find preloading multiple images...http://www.pageresource.com/jscript/jpreload.htm
  12. Try this code, changes in bold...function menuOver() { var source = window.event.srcElement; if (source.id=="topChem") { document.getElementById("botChem").style.visibility = "visible"; } else if (source.id=="topMin") { document.getElementById("botMin").style.visibility = "visible"; }}function menuOut() { var source = window.event.srcElement; if (source.id=="topChem") { document.getElementById("botChem").style.visibility = "hidden"; } else if (source.id=="topMin") { document.getElementById("botMin").style.visibility = "hidden"; }}
  13. pulpfiction

    SQL Query

    "not in" thats the part i forgot..... Thanks Pjoe, it worked.... guess this is what TriAdX is also looking for..
  14. pulpfiction

    SQL Query

    Table 1:ID Name1 A2 B3 C4 D5 E6 FTable 2:FID124How to get the ID's from table 1 that are not in table 2. Expected result... ID356Thanks
  15. pulpfiction

    please help me

    Are you asking that if you can have two images in [sorting a column] gridview, something like small triangle to sort ascending and inverted triangle to sort descending..
  16. This might help you...http://aspnet.4guysfromrolla.com/articles/092706-1.aspx
  17. Yeah, when I entered some text in the textbox, it was bold....
  18. pulpfiction

    Escape

    Glad I could help you....
  19. When I tried that code it compiled, did not even give a runtime error...
  20. You are asking about "favicon"http://en.wikipedia.org/wiki/Favicon
  21. but this will not throw any error.... right??.aspx<asp:TextBox ID="txt" Runat="server" Width="100" />.aspx.vbProtected WithEvents txt As System.Web.UI.WebControls.TextBox...........txt.Font.Bold = True
  22. pulpfiction

    Escape

    To write this string:The man said, "I like bananas!", before he left. var1 = "I like bananas!"response.write("The man said, """ & var1 & """, before he left.")
  23. pulpfiction

    Escape

    For value attribute, you dont have use double quotes, try this. it works. and its response.write in vbscript and not document.writeresponse.write("<input name=""author"" type=""text"" value=" & variable & " size=""50"" />")
  24. Guess there is no enum in javascript....http://www.tek-tips.com/viewthread.cfm?qid...0053&page=1
  25. pulpfiction

    Escape

    Guess escape character in VBScript in double quotes ( " )example:response.write("hi this is a ""test"" line")OR Response.Write "<select name=""id"">"
×
×
  • Create New...