Click here to Skip to main content
15,921,279 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Cookies problem. Pin
Saksida Bojan14-Sep-07 9:22
Saksida Bojan14-Sep-07 9:22 
QuestionValidate dates Pin
seemamltn13-Sep-07 9:38
seemamltn13-Sep-07 9:38 
QuestionValidating the dates Pin
seemamltn13-Sep-07 9:36
seemamltn13-Sep-07 9:36 
AnswerRe: Validating the dates Pin
Jon Sagara13-Sep-07 9:39
Jon Sagara13-Sep-07 9:39 
QuestionRequiredValidation controls Pin
seemamltn13-Sep-07 7:57
seemamltn13-Sep-07 7:57 
AnswerRe: RequiredValidation controls Pin
Brent Lamborn13-Sep-07 8:42
Brent Lamborn13-Sep-07 8:42 
AnswerRe: RequiredValidation controls Pin
Jintal Patel13-Sep-07 20:05
Jintal Patel13-Sep-07 20:05 
QuestionSendin Emails !!! Pin
mrkeivan13-Sep-07 7:29
mrkeivan13-Sep-07 7:29 
Hey guys, I'm trying to make a contact us page for my website and I was reading an article about
that matter http://www.codeproject.com/useritems/EmailApplication.asp
I did exactly as was explained in the article I've added a valid pop3 and SMTP address and
the account which I'm sendin the mail to is also created in my website ! but when I click send I
get this error !

        string Name = TextBox1.Text;<br />
        string Address = TextBox2.Text;<br />
        string Message = TextBox3.Text;<br />
<br />
        SmtpClient SC = new SmtpClient();<br />
        MailMessage Msg = new MailMessage();<br />
<br />
        try<br />
        {<br />
            MailAddress FromAddress = new MailAddress(Address, Name);<br />
            SC.Host = "mail.mla.ir";<br />
            SC.Port = 25;<br />
            Msg.From = FromAddress;<br />
            Msg.To.Add("keivan@mla.ir");<br />
            Msg.Subject = "FeedBack";<br />
            Msg.Body = Message;<br />
            SC.Send(Msg);<br />
        }<br />
        catch (Exception ex)<br />
        {<br />
            Label4.Text = ex.ToString();<br />
        }



System.Net.Mail.SmtpFailedRecipientException: Mailbox unavailable.
The server response was: Verification failed
for at System.Net.Mail.SmtpTransport.SendMail(MailAddress sender, MailAddressCollection recipients, String deliveryNotify, SmtpFailedRecipientException& exception)
at System.Net.Mail.SmtpClient.Send(MailMessage message) at ContactMe.Button1_Click(Object sender, EventArgs e)
in (My file)

please help me out !

Thaqnx
Mr.
K
AnswerRe: Sendin Emails !!! Pin
hsesoldi3-Sep-08 4:05
hsesoldi3-Sep-08 4:05 
QuestionRepeater and datagrid Pin
cbm13-Sep-07 6:02
cbm13-Sep-07 6:02 
AnswerRe: Repeater and datagrid Pin
eggsovereasy13-Sep-07 9:51
eggsovereasy13-Sep-07 9:51 
QuestionGridView Problem Pin
priyank_ldce13-Sep-07 5:50
priyank_ldce13-Sep-07 5:50 
AnswerRe: GridView Problem Pin
Member 407932028-May-08 4:56
Member 407932028-May-08 4:56 
QuestionProblem with sorting and paging Pin
satishkumarnk13-Sep-07 5:35
satishkumarnk13-Sep-07 5:35 
Questionhow can I use itextsharp to create a pdf with html in it? Pin
Big Ralph13-Sep-07 5:04
Big Ralph13-Sep-07 5:04 
QuestionSetting Value in a row of Column/Filed of a documnet Library as link to another Library Pin
khan SharePoint Developer13-Sep-07 4:41
khan SharePoint Developer13-Sep-07 4:41 
Questiongetting only date part of a variable not time Pin
Farhad Eft13-Sep-07 4:31
Farhad Eft13-Sep-07 4:31 
AnswerRe: getting only date part of a variable not time Pin
Paddy Boyd13-Sep-07 4:39
Paddy Boyd13-Sep-07 4:39 
Questionspecify certain file formats for file upload control Pin
Farhad Eft13-Sep-07 4:24
Farhad Eft13-Sep-07 4:24 
AnswerRe: specify certain file formats for file upload control Pin
Shujaat Ullah Khan13-Sep-07 20:36
Shujaat Ullah Khan13-Sep-07 20:36 
QuestionProblem binding data to GridView Pin
macca2413-Sep-07 4:17
macca2413-Sep-07 4:17 
AnswerRe: Problem binding data to GridView Pin
Brent Lamborn13-Sep-07 4:23
Brent Lamborn13-Sep-07 4:23 
GeneralRe: Problem binding data to GridView Pin
macca2413-Sep-07 4:32
macca2413-Sep-07 4:32 
GeneralRe: Problem binding data to GridView Pin
Brent Lamborn13-Sep-07 5:16
Brent Lamborn13-Sep-07 5:16 
GeneralRe: Problem binding data to GridView Pin
macca2413-Sep-07 23:50
macca2413-Sep-07 23:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.