Hi,
i create a feedback module with basic input entry form and two input controls. i installed this to my dnn web page.working fine.
i plan to show this feedback page as popup window of home page button click.its also working fine.
now i added new thanx.aspx page.when i submit feedback button the form field values are stored in db and it want to redirect thanx.aspx page.if i click cancel button want to stop insert process.
its working fine in my separate page installed module function.but in popup submit link only save the field values in db, thanx.aspx page navigation is not working.
i don't have any idea why navigation not working in popup window button click only.
The following code is my two button click events,
protected void btnSubmit_Click(object sender, EventArgs e)
{
Feedback t = new Feedback{ Experience = rdoExperience.SelectedValue.ToString(),
Look = rdoLook.SelectedValue.ToString(),
YouLike = txtLike.Text.Trim(),
Improve = txtImrpve.Text.Trim(),
ModuleId = ModuleId,
CreatedByUserId = UserId,
CreatedOnDate = DateTime.Now,
};
FeedbackController.AddFeedback(t, TabId);
Response.Redirect("/AboutUs.aspx");
}
protected void btnCancel_Click(object sender, EventArgs e)
{
Response.Redirect(DotNetNuke.Common.Globals.NavigateURL());
}