Home > front end >  ASP.Net MVC RDLC Mail Concept is not Working for me on live server
ASP.Net MVC RDLC Mail Concept is not Working for me on live server

Time:07-13

It is showing Report Viewer but On live server Only(Smarterasp.net server)Mail Concept is not working. Please help me to fixed this problem, I did not published that RDLC and I did not Change that RDLC into Embedded Content, Just I Uploaded that RDLC Folder

CodePudding user response:

I believe that you need to be more specific on your issue. Is there any error message? Have you contacted their support team to take a look on your issue?

CodePudding user response:

Yes broit is my Smarterasp.net LOG file

my problem is location.on live server, i dont know how to get live location folder path and used on mail m.Subject = sub; m.Body = DecodedString; string path = "/Temp/Invoice.PDF"; m.Attachments.Add(new System.Net.Mail.Attachment(path)); m.IsBodyHtml = true; sc.Host = strSmtpServer; string str1 = "gmail.com"; string str2 = strSmtpServer.ToLower();

  • Related