Jump to content

vebdeziner

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by vebdeziner

  1. Hi friend,how r u doing? hope u r 5n nd coolll.Plz help me, i need ASP sample website for help.... could any one provide me.... or give the link on net so that it will be very help full to me...thanks in advance.........:) :)

  2. hi, first create the html form and give the values for example if u have suppose three things likename : email Id : comments : or u can add many things now give the Id's to each field ex : name="fname", emai id="email", comments="comments"this all shoudl b in html or asp no probs.. then create one asp file with this codeDim name, Title, company, address, city, state1, zip, country, phone, fax, email, comments, NewMailObjname=request.form("name")email=request.form("email")comments=request.form("comments")Set NewMailObj=Server.CreateObject("CDONTS.NewMail")NewMailObj.From = "name@domain.com"NewMailObj.To = "destination@domain.com"NewMailObj.Subject = "New message sent.." NewMailObj.Body = "the sender's name is : " & name & _"<br><br>the title is : " & email & _"<br><br>the company is : " & comments & _NewMailObj.BodyFormat = 0 NewMailObj.MailFormat = 0 NewMailObj.SendSet NewMailObj = nothingResponse.write ""%>asp file finish here....hope this is simple.. :)

×
×
  • Create New...