Что я хочу это:
У меня есть страница .aspx.
Когда я нажимаю на кнопку, я хочу модалпопуп как
window.open ("Popup.aspx, '', '');");
чтобы открыть
И когда пользователь нажимает кнопку подтверждения @ popup.aspx, я хочу, чтобы какой-то другой код выполнялся на стороне сервера родительской формы.
Ex:
protected void btntext_Click(object sender, EventArgs e)
{
StringBuilder sb = new StringBuilder();
sb.Append("<script>");
sb.Append("window.open("popup.aspx", "List","scrollbars=no,resizable=no,width=400,height=280"););
sb.Append("</script");
Page.RegisterStartupScript("test", sb.ToString());
** I want that The popup should open here before executing the SaveValue() function
And I can return some value from that popup.aspx and check here and according to that/execute the code.**
SaveValue();
}