Click here to Skip to main content
15,897,334 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: regular expression for hyperlink tag Pin
Arun Jacob4-Apr-10 22:51
Arun Jacob4-Apr-10 22:51 
GeneralRe: regular expression for hyperlink tag Pin
enjoycrack4-Apr-10 23:14
enjoycrack4-Apr-10 23:14 
AnswerRe: regular expression for hyperlink tag Pin
Arindam Tewary4-Apr-10 23:09
professionalArindam Tewary4-Apr-10 23:09 
GeneralRe: regular expression for hyperlink tag Pin
enjoycrack4-Apr-10 23:13
enjoycrack4-Apr-10 23:13 
AnswerRe: regular expression for hyperlink tag Pin
enjoycrack12-Apr-10 21:09
enjoycrack12-Apr-10 21:09 
Questionhow an Off Line Search application is made in .net ? Pin
gautamamit84-Apr-10 21:42
gautamamit84-Apr-10 21:42 
AnswerRe: how an Off Line Search application is made in .net ? Pin
ptrckmc2495-Apr-10 8:31
ptrckmc2495-Apr-10 8:31 
QuestionSend mail using proxy ip Pin
mohanednoon4-Apr-10 21:41
mohanednoon4-Apr-10 21:41 
Dear , How can i send an email using SMPT through a proxy ip :
for example : i want to send an email from yahoo to hotmail , but i want to send it
using proxy ip not my ip so when i check the sent message in hotmail i will see the proxy ip
not my ip.i am using this code , but how should i set the proxy ip ?Please any help ...

MailMessage mm = new MailMessage();
mm.From = new MailAddress(txtfrom.Text);
mm.To.Add(new MailAddress("mymail@hotmail.com"));
mm.Subject = "hi" + i.ToString();
mm.Body = "hi" + i.ToString();
mm.IsBodyHtml = false;
SmtpClient sc = new SmtpClient();
sc.Host = "in.smtp.mail.yahoo.com";

sc.Port = 587;
sc.Credentials = new NetworkCredential
(txtuser.Text, txtpass.Text);


//sc.UseDefaultCredentials = true;
//sc.EnableSsl = true;
sc.DeliveryMethod = SmtpDeliveryMethod.Network;
sc.Send(mm);
QuestionPrinting BarCodes in Crystal Reports in ASP.net App Pin
VikashGohil4-Apr-10 21:40
VikashGohil4-Apr-10 21:40 
QuestionThe compiler failed with error code -1073741819. Pin
amitamit0994-Apr-10 21:20
amitamit0994-Apr-10 21:20 
Questionresponse.write Pin
Kissy164-Apr-10 21:00
Kissy164-Apr-10 21:00 
AnswerRe: response.write Pin
Arindam Tewary4-Apr-10 21:53
professionalArindam Tewary4-Apr-10 21:53 
GeneralRe: response.write Pin
Kissy164-Apr-10 22:46
Kissy164-Apr-10 22:46 
GeneralRe: response.write Pin
Arindam Tewary5-Apr-10 2:31
professionalArindam Tewary5-Apr-10 2:31 
QuestionUser information Pin
Nilesh Warude4-Apr-10 19:31
Nilesh Warude4-Apr-10 19:31 
AnswerRe: User information Pin
Gaurav Dudeja India4-Apr-10 19:40
Gaurav Dudeja India4-Apr-10 19:40 
GeneralRe: User information Pin
BK Komal5-Apr-10 23:39
BK Komal5-Apr-10 23:39 
GeneralRe: User information Pin
Gaurav Dudeja India5-Apr-10 23:46
Gaurav Dudeja India5-Apr-10 23:46 
AnswerRe: User information Pin
meeram3954-Apr-10 20:15
meeram3954-Apr-10 20:15 
GeneralRe: User information Pin
BK Komal5-Apr-10 23:40
BK Komal5-Apr-10 23:40 
Questiondynamic controls Pin
Nilesh Warude4-Apr-10 19:22
Nilesh Warude4-Apr-10 19:22 
AnswerRe: dynamic controls Pin
Gaurav Dudeja India4-Apr-10 19:42
Gaurav Dudeja India4-Apr-10 19:42 
AnswerRe: dynamic controls Pin
Farraj7-Apr-10 0:23
Farraj7-Apr-10 0:23 
Questiondynamic controls Pin
Nilesh Warude4-Apr-10 19:21
Nilesh Warude4-Apr-10 19:21 
QuestionHow to use SCORM component in asp.net? Pin
ankiasd4-Apr-10 18:33
ankiasd4-Apr-10 18:33 

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.