New Page 1

 
     
 
<% If Request.Form="" Then %>

Send us your Feedback.

Name:

Place:

E-mail:

Commands

 

 

 


<% Else 'receive the form values Dim sName, sEmail, sFeedback, sPlace sName=Request.Form("txtName") sPlace=Request.Form("txtPlace") sEmail=Request.Form("txtEmail") sFeedback=Request.Form("txtFeedback") ' create the HTML formatted email text Dim sEmailText sEmailText = sEmailText & "" sEmailText = sEmailText & "" sEmailText = sEmailText & "HTML Email" sEmailText = sEmailText & "" sEmailText = sEmailText & "" sEmailText = sEmailText & "" sEmailText = sEmailText & "Feedback message from: " & sName & "
" sEmailText = sEmailText & "Email: " & sEmail & "
" sEmailText = sEmailText & "Message From: " & sPlace & "
" sEmailText = sEmailText & "Message:" & sFeedback & "
" sEmailText = sEmailText & "Date & Time:" & Now() & "
" sEmailText = sEmailText & "IP :" & Request.ServerVariables("REMOTE_ADDR") sEmailText = sEmailText & "
" sEmailText = sEmailText & "" sEmailText = sEmailText & "" 'create the mail object Set NewMailObj=Server.CreateObject("CDONTS.NewMail") NewMailObj.From=sEmail 'This is the email of the feedback sender NewMailObj.To = "info@muslimpath.com" 'change to your address NewMailObj.BCC="mahaboobptp@gmail.com" NewMailObj.Subject = "Feedback" NewMailObj.Body = sEmailText 'you need to add these 2 lines for the mail to be sent in HTML format 'remove them and the email will be sent in Text format NewMailObj.BodyFormat = 0 NewMailObj.MailFormat = 0 NewMailObj.Send Set NewMailObj=Nothing Response.write "
Thank you for sending your feedback.
" Response.write "We will get back to you if necessary.
" Response.write "Click to Home Page" End If %>

 

 

 

<% If Page="main.htm" then %> <% Else %> <% End IF%>

 

<% 'declare your variables dim varad, objAd 'create an instance of the Rotator object and assign variable Set objAd = Server.CreateObject("MSWC.AdRotator") 'make sure the page will open up in a new browser objAd.TargetFrame="TARGET=_BLANK" 'call the GetAdvertisement method and assign all details to variable varAd = objAd.GetAdvertisement("/advt/adrotator.txt") 'display the banner and its details Response.Write varAd %>

  Home Feedback  

Ó Muslimpath.com

Designed and Maintained by

<% Function Correct(mMatter) 'mMatter= Replace(mMatter, chr(115)& chr(173) , "WvsS") 'mMatter= Replace(mMatter, chr(115)& chr(173), "WvtS") 'mMatter= Replace(mMatter, chr(173), chr(228)) ' '"WvS") mMatter= Replace(mMatter, "ä", "dd") mMatter= Replace(mMatter, chr(173), "WvS") 'mMatter= Replace(mMatter, "-", "") 'mMatter= Replace(mMatter, "v", "") mMatter= Replace(mMatter, "charset=windows-1252", "charset=x-user-defined") 'mMatter= Replace(mMatter, "httpequiv", "http-equiv") Correct=mMatter End Function %>