My project's start page is Default.aspx.
protected void ImageButton1_Click1(object sender, ImageClickEventArgs e)
{
Response.Redirect("Payment.aspx);
}
When I click the button it returns //localhost/Default.aspx/Payment.aspx instead of //localhost/Payment.aspx. Where is the problem?