4
Answers

here i am trying to redirect the same page using linkbutton.

mithun kumar

mithun kumar

8y
242
1
here i am trying to redirect the same page using linkbutton in windowsforms application.
but it is showing error like nullReferenceException was unhandled
 
here is the code
 
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
HttpContext.Current.Response.Redirect("MerchantDashboard.cs");
}
 
Answers (4)