TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Himanshu Tyagi
NA
119
15.6k
No overload for method 'createassociateemailbody' takes 2 ar
May 19 2018 1:49 AM
string strAssociateBody = this.createAssociateEmailBody(lblClientName.Text, lblPhoneNo.Text, strFinalAddress, dblAssociatePrice);
this.createAssociateEmailBody("New Order from Associate Clients!", strAssociateBody);
i am getting error on
this.createAssociateEmailBody("New Order from Associate Clients!", strAssociateBody);
while i have passed all variables...
private string createAssociateEmailBody(string strUserName, string strPhoneNo, string strAddress, double dblAssociatePrice)
{
StringBuilder strAdd = new StringBuilder();
strAdd.Append(lblFinalAddressUserName.Text + ",");
strAdd.Append(lblFinalAddressFlatNo.Text + ",");
strAdd.Append(lblFinalAddresLandmark.Text + ",");
strAdd.Append(lblFinalCity.Text + ",");
string strFinalAddress = strAdd.ToString();
string strBody = string.Empty;
//using streamreader for reading my htmltemplate
using (StreamReader reader = new StreamReader(Server.MapPath("~/Forms/Email.html")))
{
strBody = reader.ReadToEnd();
}
strBody = strBody.Replace("{UserName}", strUserName); //replacing the required things
strBody = strBody.Replace("{PhoneNo}", strPhoneNo);
strBody = strBody.Replace("{Address}", strAddress);
strBody = strBody.Replace("{AssociateTotal}", dblAssociatePrice.ToString());
return strBody;
}
Reply
Answers (
2
)
Media streaming library.
Question on Abstraction and Interface