Challa QlikView, Biztalk, DotNet and MSBI FAQ's Blog
Solution for the QlikView, Biztalk, DotNet and MSBI real time development problems
Search This Blog
Friday, September 23, 2011
"Cannot get IIS pickup directory" SMTP exception in asp.net
Use below code to resolve the issue
smtp.DeliveryMethod = SmtpDeliveryMethod.NetWork
instead of
smtp.DeliverMethod=smtpDeliverMethod.pickUpis....
Newer Posts
Older Posts
Home
Subscribe to:
Comments (Atom)
Popular Posts
MVC Interview Questions and Answers Part 2
For MVC Interview Questions Part 1 refer below link: http://challadotnetfaq.blogspot.co.uk/2013/12/mvc-interview-questions-and-answers.ht...
MVC Handling multiple submit buttons in single view
MVC: Handling Multiple button submission from one view While developing any web applications we use to design lot more forms. Most of...
Difference between Object, Dynamic and Var in C#.Net
Object Dynamic Var Can able to store any kind of value, because object is the base class of all type in .net framework. Can able to s...
Select/Insert/Update Excel 2007 File using c# in .net
//insert data into excel sheet private void btnSave_Click(object sender, EventArgs e) { using (OleDbConnection excelConnection = new O...
Recommendations for Abstract Classes vs. Interfaces in C#.Net
Here are some recommendations to help you to decide whether to use an interface or an abstract class to provide polymorphism for your compon...