0

ボタンクリックで新しいウィンドウを開くために使用している以下のコードがあります。ボタン クリック イベントで以下のコードを実行しています。

         protected void btnView_Click(object sender, EventArgs e)
            {

int activeTab = pgSearchFrm.ActiveTabIndex;

string sel = this.ddlFields.SelectedValue;

string url = "\\ATPrintView.aspx?SearchID=" + Convert.ToString(activeTab) + "&Col=" + sel + "&Val=" + txtFields.Text;

ScriptManager.RegisterStartupScript(this, this.GetType(), "Open", "window.open('" + url + "','_blank','height=500,width=800,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,titlebar=no').focus();", true);
    }
4

0 に答える 0