Hello
As Initiation I have to create a custom helper for hyperlink like in the code above :
class CapturedLink { public static MvcHtmlString Hyperlink(this HtmlHelper helper, string url, string linkText) { return MvcHtmlString.Create(String.Format("{1}", url, linkText)); } }
but what i am missing is that I want to capture some data (application name,page ...etc ) when I click on that link
How we can do this ?
yosr jemiliPosted Aug 7, 2015, 1:41 PM
I edited the code but I don't know if its a good idea.