Click here to Skip to main content
16,004,969 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Secure webservice? Pin
Abhijit Jana17-Oct-08 2:44
professionalAbhijit Jana17-Oct-08 2:44 
Questionhw to call server side function from client side Pin
Learning IT16-Oct-08 23:12
Learning IT16-Oct-08 23:12 
AnswerRe: hw to call server side function from client side Pin
SeMartens16-Oct-08 23:44
SeMartens16-Oct-08 23:44 
AnswerRe: hw to call server side function from client side Pin
James Simpson16-Oct-08 23:47
James Simpson16-Oct-08 23:47 
QuestionCross site scripting Pin
MAT100316-Oct-08 22:49
MAT100316-Oct-08 22:49 
AnswerRe: Cross site scripting Pin
Simon P Stevens16-Oct-08 22:58
Simon P Stevens16-Oct-08 22:58 
GeneralRe: Cross site scripting Pin
MAT100316-Oct-08 23:09
MAT100316-Oct-08 23:09 
QuestionSending Mail Pin
.NET- India 16-Oct-08 22:00
.NET- India 16-Oct-08 22:00 
Hello Friend,

I'm sending mail at my domain server then i'm getting mail by using my mail server but when i'm sending mail at my gmail account using my mail server it's not sending the mail and raising an error
MailBox Unavailable The server response was : No Such user here

I'm using the following code plz suggest the way..........



MailMessage mail = new MailMessage();
MailAddress address = new MailAddress("halo@gmail.com", "Testing Mail");

mail.From = address;
mail.To.Add("raushanraj2@gmail.com");

mail.Subject = "Hello How R U";
mail.Body = "Dear Friend<br> How R U";

mail.IsBodyHtml=false;

string host = "myMailServer";

SmtpClient smtp = new SmtpClient(host, 25);

try
{
smtp.Send(mail);
Response.Write("Mail Sent Successfully");
}
catch(Exception ex)
{
Response.Write(ex.Message.ToString());
}
AnswerRe: Sending Mail Pin
eyeseetee16-Oct-08 22:06
eyeseetee16-Oct-08 22:06 
AnswerRe: Sending Mail Pin
Paddy Boyd17-Oct-08 0:10
Paddy Boyd17-Oct-08 0:10 
GeneralRe: Sending Mail [modified] Pin
.NET- India 17-Oct-08 1:08
.NET- India 17-Oct-08 1:08 
QuestionCreateUserWizard control button problem Pin
bonkers12316-Oct-08 21:56
bonkers12316-Oct-08 21:56 
AnswerRe: CreateUserWizard control button problem [modified] Pin
eyeseetee16-Oct-08 22:08
eyeseetee16-Oct-08 22:08 
GeneralRe: CreateUserWizard control button problem Pin
bonkers12316-Oct-08 22:54
bonkers12316-Oct-08 22:54 
GeneralRe: CreateUserWizard control button problem Pin
eyeseetee16-Oct-08 23:16
eyeseetee16-Oct-08 23:16 
GeneralRe: CreateUserWizard control button problem Pin
bonkers12316-Oct-08 23:28
bonkers12316-Oct-08 23:28 
AnswerRe: CreateUserWizard control button problem Pin
Alok Sharma ji18-Oct-08 1:11
Alok Sharma ji18-Oct-08 1:11 
GeneralRe: CreateUserWizard control button problem Pin
bonkers20-Oct-08 4:13
bonkers20-Oct-08 4:13 
QuestionRegarding the error while doing migration.. Pin
sandhya1416-Oct-08 21:46
sandhya1416-Oct-08 21:46 
QuestionMultiple uploader Pin
M. K. BASHER16-Oct-08 20:33
M. K. BASHER16-Oct-08 20:33 
AnswerRe: Multiple uploader Pin
eyeseetee16-Oct-08 22:11
eyeseetee16-Oct-08 22:11 
GeneralRe: Multiple uploader Pin
M. K. BASHER17-Oct-08 6:03
M. K. BASHER17-Oct-08 6:03 
QuestionProblem while passing a Relative path to a Script Funcion Pin
Sivan.G16-Oct-08 19:49
Sivan.G16-Oct-08 19:49 
QuestionBanking System Pin
krishna subedi16-Oct-08 19:30
krishna subedi16-Oct-08 19:30 
GeneralRe: Banking System PinPopular
Pete O'Hanlon16-Oct-08 22:28
mvePete O'Hanlon16-Oct-08 22:28 

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.