
maelstorm
Members-
Content Count
54 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout maelstorm
-
Rank
Newbie
- Birthday 06/13/1983
Contact Methods
-
Website URL
http://
-
ICQ
0
-
Yahoo
harish_d_2001
Profile Information
-
Location
India
-
Check out these siteshttp://www.4guysfromrolla.com/webtech/111500-1.shtmlUsing Javascripthttp://www.experts-exchange.com/Web/Web_La...Q_20828609.html
-
Create a cookie:document.cookie = 'myCookie=' + nameprompt +';'Cookies expires: lasts for 7 days.var ckyDate = new Date;ckyDate.setDate(ckyDate.getDate( ) + 7);document.cookie = 'myCookie=' + cookieString + '; expires=' + ckyDate.toGMTString( ) + ';';For over all idea http://www.w3schools.com/js/js_cookies.asp
-
The error ORA-00904 means that there is no such field "INTEREST", just check ur tables if it has any field by that name.
-
The error ORA-00904 means that there is no such field "INTEREST", just check ur tables if it has any field by that name.
-
I found a part of what you want( for countries alone), check out the link belowCountry Drop Down list
-
Hi There are 2 frames in the site, one "below" the another. The upper frame is (longer) has a scrollbar, when i click the upper frame there will be some change in the lower frame.The problem is that if i scroll down the upper frame to click somthing as the bottom, the lower frame changes and the upper needs to stay in the place where i clicked, instead goes to the top of its page.help!!!
-
HiThis error could occur bcos of NTFS Permission problem,Give Everyone "Full Control" over the file.HTH
-
HiTry writing the url part like thisbackground-image:url("file:///C:\Documents and Settings\Hard\Mine dokumenter\det_femte_ess.gif");HTH
-
Hi guysI think Skimcin is correct. The Suggestion must be open to all.
-
HiTry this VB.Net code.. Dim objMM As New MailMessage objMM.From = sender@crap.com objMM.To = reciever@crap.com objMM.Subject = "This is a test mail" objMM.BodyFormat = MailFormat.Html objMM.Body = "Write somthing in the body of the Mail" SmtpMail.SmtpServer = SMTP Server Name SmtpMail.Send(objMM) HTH