Samuel David
Member
- Joined
- Nov 29, 2022
- Messages
- 9
- Programming Experience
- Beginner
Hello Everyone,
I am trying to embed hyperlink in worksheet cell text. But below block of code doesn't work for me. I am using telerik library here. What's wrong in below code?
Please suggest me.
Thanks,
Sam
I am trying to embed hyperlink in worksheet cell text. But below block of code doesn't work for me. I am using telerik library here. What's wrong in below code?
Embed Hyperlink in cell text:
using(var rowExporter = sheetExporter.CreateRowExporter())
{
String policy = “<a href=https://www.termsfeed.com/blog/sample-terms-and-conditions-template/> Policy Terms</a>”;
String showText = “For necessary info, Please refer “ +policy;
Using var cellExporter = rowExporter.CreateCellExporter();
cellExporter.SetValue(showText);
}
Please suggest me.
Thanks,
Sam
Last edited: