Hi rakibxl,
To set or enable EnableHyperlinks property of a local report which will be displayed using a ReportViewer control, open the Properties screen for ReportViewer control. Then drill down the LocalReport property which is a member of Misc group tab container and select True for EnableHyperlinks for the LocalReport.
Or you can set it from code behind as well.
C#
ReportViewer1.LocalReport.EnableHyperlinks = true;
VB.Net
ReportViewer1.LocalReport.EnableHyperlinks = True