Click here to Skip to main content
15,895,827 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questioni want to see "web form designer generated code" in dotnet 2.0 Pin
Khawar Abbas111-Jul-06 20:39
Khawar Abbas111-Jul-06 20:39 
AnswerRe: i want to see "web form designer generated code" in dotnet 2.0 Pin
minhpc_bk11-Jul-06 21:50
minhpc_bk11-Jul-06 21:50 
AnswerRe: i want to see "web form designer generated code" in dotnet 2.0 Pin
Paddy Boyd11-Jul-06 22:45
Paddy Boyd11-Jul-06 22:45 
GeneralRe: i want to see "web form designer generated code" in dotnet 2.0 Pin
Khawar Abbas111-Jul-06 23:42
Khawar Abbas111-Jul-06 23:42 
QuestionDatagrid footer Pin
kuwl_mark11-Jul-06 20:06
kuwl_mark11-Jul-06 20:06 
QuestionRSS Feed Code Pin
Amit Agarrwal11-Jul-06 20:04
Amit Agarrwal11-Jul-06 20:04 
AnswerRe: RSS Feed Code Pin
minhpc_bk11-Jul-06 21:55
minhpc_bk11-Jul-06 21:55 
QuestionUsing Outlook in ASP.Net Pin
aaraaayen11-Jul-06 19:53
aaraaayen11-Jul-06 19:53 
Hi friends,

in my application, i am using outlook 11.0 to send mail to the recipient whose address stored in excel. i am fetching excel and stored the address in grid view and sending the mail. For me the mail should send to all the recipients but one mail at a time. after sendnig the first mail the next mail should send. i used for loop for this. but very first email id is sending properly thro outlook. but for the next loop it gives error that item moved or deleted. i give the code. please help.

Code:

Outlook.Application o = new Outlook.ApplicationClass();
Outlook.MailItem myMail = (Outlook.MailItem)o.CreateItem(Outlook.OlItemType.olMailItem);

for (int i = 0; i < GridView1.Rows.Count; i++)
{
myMail.Recipients.Add(GridView1.Rows[i].Cells[0].Text);
myMail.Subject = "Check";
myMail.Body = "Its a Demo Mail. Good Afternoon";
myMail.Attachments.Add("C:/New1.txt", Missing.Value, Missing.Value, Missing.Value);
myMail.Send();
}

Prya
AnswerRe: Using Outlook in ASP.Net Pin
Saifi Hasan11-Jul-06 23:03
Saifi Hasan11-Jul-06 23:03 
GeneralRe: Using Outlook in ASP.Net Pin
aaraaayen12-Jul-06 0:11
aaraaayen12-Jul-06 0:11 
QuestionRoles and logins? Pin
kbalias11-Jul-06 19:41
kbalias11-Jul-06 19:41 
AnswerRe: Roles and logins? Pin
kumarprabhakar7411-Jul-06 22:09
kumarprabhakar7411-Jul-06 22:09 
Questionreturning values form jagged arrays Pin
mehnazash11-Jul-06 19:00
mehnazash11-Jul-06 19:00 
AnswerRe: returning values form jagged arrays Pin
Guffa11-Jul-06 20:55
Guffa11-Jul-06 20:55 
QuestionDoubt In Datalist Pin
Vipin Venugopal11-Jul-06 18:05
Vipin Venugopal11-Jul-06 18:05 
AnswerRe: Doubt In Datalist Pin
minhpc_bk11-Jul-06 21:58
minhpc_bk11-Jul-06 21:58 
QuestionArrgghh! How to disable vs automatically adding style settings for controls? Pin
Member 9611-Jul-06 12:03
Member 9611-Jul-06 12:03 
AnswerRe: Arrgghh! How to disable vs automatically adding style settings for controls? Pin
minhpc_bk11-Jul-06 22:01
minhpc_bk11-Jul-06 22:01 
GeneralRe: Arrgghh! How to disable vs automatically adding style settings for controls? Pin
Member 9612-Jul-06 5:18
Member 9612-Jul-06 5:18 
QuestionHow to send client side data to server side using any method(hidden field or AJAX) Pin
B Desai11-Jul-06 11:55
B Desai11-Jul-06 11:55 
AnswerRe: How to send client side data to server side using any method(hidden field or AJAX) Pin
minhpc_bk11-Jul-06 22:05
minhpc_bk11-Jul-06 22:05 
QuestionRegularExpressionValidator make me crazy! Pin
tranky11-Jul-06 10:19
tranky11-Jul-06 10:19 
AnswerRe: RegularExpressionValidator make me crazy! Pin
Dustin Metzgar11-Jul-06 10:35
Dustin Metzgar11-Jul-06 10:35 
AnswerRe: RegularExpressionValidator make me crazy! Pin
minhpc_bk11-Jul-06 11:58
minhpc_bk11-Jul-06 11:58 
QuestionAbsolute positioning ( CSS ) and updating problems in Visual Studio 2005 Pin
tedhill1311-Jul-06 10:14
tedhill1311-Jul-06 10:14 

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.