Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Everything posted by pulpfiction

  1. First question is how long do you want to store that information? Till user closes browser: sessions.Even after closing browser: Cookies or Database. but cookies can be deleted by user, where in database, user cannot delete unless you provide an option to delete....
  2. This might help....http://www.brunildo.org/test/img_center.html
  3. This topic was posted Nov 19th 06 , how did I miss this... anyways its really cool.
  4. Try <div> with overflow.... <div ID="oDiv" STYLE="width: 200px; height: 200px; overflow: auto;border:1px solid #000000;"><a href="#">Link 1</a> <br /><a href="#">Link 2</a><br /><a href="#">Link 3</a><br /><a href="#">Link 4</a><br /><a href="#">Link 5</a><br /><a href="#">Link 6</a><br /><a href="#">Link 7</a><br /><a href="#">Link 8</a><br /><a href="#">Link 9</a><br /><a href="#">Link 10</a><br /><a href="#">Link 11</a><br /><a href="#">Link 12</a><br /><a href="#">Link 13</a><br /><a href="#">Link 14</a><br /><a href="#">Link 15</a></div>
  5. You can use <iframe>http://www.w3schools.com/tags/tag_iframe.asp
  6. Sending mail using ASP.....http://www.w3schools.com/asp/asp_send_email.asp
  7. Little more information, look for "DATE_FORMAT" in page below....http://dev.mysql.com/doc/refman/5.0/en/dat...-functions.html
  8. Rather than having to design new page header, what many template design have is, cut part of a nice image [ http://www.openstockphotography.org/ ] and try to add some effects to that......
  9. Little bit more information will help us "create" a function to display name...... :)what server scripting are you using? post some code...
  10. to continue with the previous 2 posts...... started web development when I was 21, been 2 years. still a long way to go...Thought I would be the only one to start off that late, seems like i got some company..
  11. Guess its because you are missing couple of declerations... try adding this.Dim Mailmsg As New MailMessageDim obj As SmtpMail
  12. $result = mysql_query("SELECT * FROM table ORDER BY Rand() LIMIT 1");while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { $var = $row["colname"];}more info: http://www.php.net/manual/en/function.mysql-fetch-array.php
  13. pulpfiction

    Censured text

    If you really want to avoid using <a> then JavaScript [mouseover, mouseout] is the option.... just out of curiosity, is there any reason you wanna avoid using <a>?
  14. pulpfiction

    Censured text

    Since you will be using this effect many times in your code its best to have CSS class.
  15. Delete record in datagrid, [vb.net]......http://builder.com.com/5100-6373-1049811.html#Listing%20E
  16. pulpfiction

    Censured text

    Im not sure what "inside a sentence" meant, but this seems to be working fine in IE 6. you can also change the CSS like below CSS:a.censure { background-color: #000000; color:#000000; text-decoration: none;}a.censure:hover { background-color: #ff00ff; color:#ffffff;}HTML:this <a href="#nogo" class="censure">word</a> should not be seen...
  17. how about using fonts like Wingdings...... there was a situation when we had to display a survey results for review which had checkboxs, so we user Wingdings 2 and R (capital r) is square with tick mark inside and just empty square was "£" so if you could find such symbols in Word then may be you can use it to build the equation.... but it would take a long time.....
  18. Try this structure.....DECLARE @var datatypeIF @var=condition1BEGIN....... sql statement 1.........ENDIF @var=condition1BEGIN....... sql statement 2.........END
  19. pulpfiction

    Layout

    Are you looking for something to help you create graphical buttons, logos etc for the website?www.graphic-design.com/Photoshop/http://www.absolutecross.com/tutorials/photoshop/
  20. check out http://www.csszengarden.com/ its got some good designs, look for "select design" on the right side
  21. Yeah its kinda wierd, "first" is not listed in the reserved keywords too....MS Access 2000: http://support.microsoft.com/default.aspx?...kb;en-us;209187Source: http://www.databasedev.co.uk/ms-access-reserved-words.html
  22. andersmoen, I have few website templates designed, incase you need, I can post the snap shots... might help you to get some idea.
  23. If the image "picture.gif" is missing then it will load "missing.gif".... are you looking for something like this?<img src="picture1.gif" onerror="this.onerror=null;this.src='missing.gif';">
  24. Content Management System, complexity depends on features you wanna add to it...
  25. May be gonna be "ORACLE" [aspnetguy] can answer this question...
×
×
  • Create New...