Posted on: 7/2/2014 3:42:56 PM | Views : 430

1st I’ve to write a loop that will search name from excel file and the find the Id against that name. I’d already wrote the function to upload excel file in tem folder now before I remove it I wanst to write a loop that will return me the Id of the name that is present in excel file, If that name does not exist then it should move on to the next name, 2nd If it finds that id it should encrypt that ID in a URL and send that URL to the email given against that ID or name in the excel sheet. Is there anybody who can help me with that

Here is my code so far 
[HttpPost] public ActionResult BulkEmailToVendor(IEnumerable<HttpPostedFileBase> jsFileUpload, long vendorId = 0) { string content = string.Empty; string tempDirectoryPath = string.Empty; try { if (j ...

Go to the complete details ...