Hi,
I am facing problems while trying to Redirect to another page whilst clicking a button that is within a user control on a page.
protected void btn_Click(object sender, EventArgs e)
{
System.Web.HttpContext.Current.Response.Redirect("CurrentVacancies.aspx?department=" + departmentDD.SelectedValue.ToString() + "&location=" + locationDD.SelectedValue.ToString() + "&type=" + typeDD.SelectedValue.ToString() + "&keyword" + keyword.Text);
}
Can you please guide me on how to solve this?
Regards,
Yash.