Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Everything posted by pulpfiction

  1. pulpfiction

    "?" in Urls

    oh so "hl" stands for "highlight"...... next time if I search for some text in a page in this forum, it will be easier to "find all" search text in the page, better than ctrl+F....
  2. if you want a menu to appear on the right click of the mouse.... try this codehttp://javascript.internet.com/navigation/popup-menu.html
  3. Guess we already had this discussion about having a "off topic" forum.... [searching for that discussion....]
  4. guess you should be bold and do it.... but dont rush, pick a good moment to tell her.....as jonas said "aim low, and you won't be disappointed"
  5. I tried the website and it happens like what justsomeguy has mentioned...... wierd, seems like IE has magical ways it works to render websites..... :)Also a suggestion about the site, it looks very plesent, how about you make a catchy graphical button for standard "find" button in the page....
  6. Just check the namespace imported, "System.Web.Mail" namespace in ASP.NET 1.x is now "System.Net.Mail" namespace in ASP.NET 2.0......
  7. "Height" attribute in <table> is Deprecated, so use <table style="height:100%;">.........
  8. When you put space between two encoded text [%3c %69 ......] then it gave me this....
  9. javascript "unescape" function is to convert a string from URL-encoded form...http://www.javascripter.net/faq/unescape.htm
  10. Should there be another option, <title>....... does title mean page content title?anyways out of the given options 2. <h1>This is a Title</h1> looks more semantically correct......
  11. When you have already assigned auto_increment, the all you need is to insert the data into the table and it should work....When you insert data, just dont give any value to the ID field...example:tableID Fname Mname Lname(auto)Your insert statement should be.... Did you try it like this? and does it still not work?INSERT INTO tblname (fname,mname,lname) VALUES ('val1','val2','val3')
  12. I kinda did the same mistake in a job interview..... when interviewer asked me about the pay range im expecting.... i said " i dont have any number in mind" he offered the job for $3000 PA lesser compared to what he offered to my friend for the same job.. that sucked... then realised we need to do some homework abt such thing too.....
  13. you know that girl for 3 years and you still havent talked to her about this..... love's not a 4 year course my friend.... let it out ASAP... good luck.
  14. Congratulations..... all the best for your job.
  15. Its a really good convertion rate, believe me.... I from India studied ther, did my undergrad there, did Masters in US and working here.. its a lot of money..
  16. seems very flexible, lot of options.....In India, you dont have so many options, courses and syllabus is fixed, till you reach the 10th grade and then you get 3 options. 1. Biology [zoology & botany] to become a doctor......2. math, physics, chemistry with computers, for engineering3. accounts: for finance n stuff like thattwo years in this stream and then we move on to college....
  17. After reading this post, kinda made me feel as if i was reading some discussion in Yahoo Answers or something like that ...... Nice advice guys on love life.....
  18. pulpfiction

    should I worry?

    Are you asking for something like in this website... check out the example at the bottom of page "scrolling layers in a table example." http://www.dyn-web.com/dhtml/scroll/
  19. Just a suggestion. Rather than having multiple IF's it will look easier if you use SWITCH CASE.....
  20. But normally when you save a jpeg file, default extension will be .jpg... right?
  21. From you post title "Image resize (.jpeg)"If you are using this extension, then guess thats the error. try .jpg
  22. Nothing seems to be wrong with the code.... just make sure the path to image is correct. and the extensionJPEG image: <img src="./foldername/filename.jpg" height="40px" width="40px">Bitmap image: <img src="./foldername/filename.bmp" height="40px" width="40px">
  23. pulpfiction

    CSStags

    Few things you need to fix in CSS..."font:Arial" must be "font-family:Arial""width:200;" its better to give units like px or em or % "width:200px;"When you give "border-width" it will apply for all borders, so border-width: thin;all four borders will be thin
  24. Dim sql As String = "IF Not Exists (SELECT colname FROM tblname WHERE colname='someval')" _ + "BEGIN " _ + "INSERT INTO tblname VALUES ()" _ + "SELECT @@Identity AS ReturnValue " _ + "End " _ + "ELSE " _ + "SELECT -2 AS ReturnValue " 'UserID already in database Dim dbconn = New OleDbConnection("ConnectionString") dbconn.Open() Dim dbcmd = New OleDbCommand(sql, dbconn) Dim i As Integer = dbcmd.ExecuteScalar() If i=-2 then Response.Write("User already in database") elseif i>0 Response.write("User inserted into db") end if dbconn.close() dbconn = Nothing "IF Not Exists.... " works in stored procedures, guess it will work here too....
×
×
  • Create New...