Click here to Skip to main content
15,889,116 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDisplying Image inside Grdview column help is needed Pin
Rameez Raja27-Feb-09 20:44
Rameez Raja27-Feb-09 20:44 
QuestionHow to change the color of a single column in VSFlexGrid Pin
pandit8427-Feb-09 20:27
pandit8427-Feb-09 20:27 
QuestionAjax Control Toolkit.CascadingDropDown ( Error) Pin
Muhammad Fahim Baloch27-Feb-09 20:26
Muhammad Fahim Baloch27-Feb-09 20:26 
AnswerRe: Ajax Control Toolkit.CascadingDropDown ( Error) Pin
keyur satyadev27-Feb-09 20:59
keyur satyadev27-Feb-09 20:59 
Questionemail in asp.net Pin
RK4 227-Feb-09 19:58
RK4 227-Feb-09 19:58 
AnswerRe: email in asp.net Pin
Abhijit Jana27-Feb-09 20:02
professionalAbhijit Jana27-Feb-09 20:02 
AnswerRe: email in asp.net Pin
Rameez Raja27-Feb-09 20:32
Rameez Raja27-Feb-09 20:32 
AnswerRe: email in asp.net Pin
keyur satyadev27-Feb-09 20:54
keyur satyadev27-Feb-09 20:54 
see the code and implement.

SmtpClient sendMail = new SmtpClient();
string mFrom = txtfrom.Text;
string mTo = txtTo.Text;
string mSubject = txtSubject.Text;
string mBody = txtMsg.Text;

System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage(mFrom, mTo, mSubject, mBody);
Attachment attach = new Attachment(fileAttach.PostedFile.FileName);
msg.Attachments.Add(attach);
sendMail.Host = "mail.ncodetechnologies.com";
sendMail.Send(msg);
lblMsgSent.Visible = true;
lblMsgSent.Text = "Message Sent";

Regards
Keyur Satyadev
Questionredirecing from one page to another page [modified] Pin
aratireddy27-Feb-09 19:51
aratireddy27-Feb-09 19:51 
AnswerRe: redirecing from one page to another page Pin
Abhijit Jana27-Feb-09 20:04
professionalAbhijit Jana27-Feb-09 20:04 
Questionjavascript Pin
roshid27-Feb-09 19:49
roshid27-Feb-09 19:49 
AnswerRe: javascript Pin
Abhijit Jana27-Feb-09 20:05
professionalAbhijit Jana27-Feb-09 20:05 
Questiontwo difference javascript alert using check boxes and delete button Pin
roshid27-Feb-09 19:25
roshid27-Feb-09 19:25 
AnswerRe: two difference javascript alert using check boxes and delete button Pin
Jon Rista27-Feb-09 19:41
Jon Rista27-Feb-09 19:41 
QuestionGallery Pin
balekarsiddharth27-Feb-09 18:21
balekarsiddharth27-Feb-09 18:21 
Questionlistview control... Pin
l a u r e n27-Feb-09 11:59
l a u r e n27-Feb-09 11:59 
AnswerRe: listview control... Pin
Calin Tatar27-Feb-09 12:56
Calin Tatar27-Feb-09 12:56 
GeneralRe: listview control... Pin
l a u r e n27-Feb-09 13:02
l a u r e n27-Feb-09 13:02 
GeneralRe: listview control... Pin
Calin Tatar27-Feb-09 13:18
Calin Tatar27-Feb-09 13:18 
GeneralRe: listview control... Pin
l a u r e n27-Feb-09 13:22
l a u r e n27-Feb-09 13:22 
GeneralRe: listview control... Pin
Colin Angus Mackay28-Feb-09 0:19
Colin Angus Mackay28-Feb-09 0:19 
GeneralRe: listview control... [modified] Pin
l a u r e n28-Feb-09 0:59
l a u r e n28-Feb-09 0:59 
AnswerRe: listview control... Pin
Eytukan27-Feb-09 22:18
Eytukan27-Feb-09 22:18 
GeneralRe: listview control... Pin
Shog928-Feb-09 5:25
sitebuilderShog928-Feb-09 5:25 
GeneralRe: listview control... Pin
l a u r e n28-Feb-09 5:46
l a u r e n28-Feb-09 5:46 

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.