1

私の Vb .net コード ビハインド (Visual Studio 2005) では、クリック イベントによって起動されるメソッドで:

hdnUrl と hdnParameters は hiddenFields です

Protected Sub btnExample_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnExample.Click
.
.
.
hdnUrl.Value = "Mypage.aspx?i=" & SomeCveDefinedInCodeBehind.Tostring & "&u=" & OtherCveDefinedInCodeBehind.Tostring
hdnParameters.value = "resizable: no; scroll: no; center: yes; dialogHeight: 525px; dialogWidth:750px; status: no;"

ScriptManager.RegisterClientScriptBlock(Page, Page.GetType, DateTime.Now.ToString, "<script type='text/javascript'> ShowWindow(); </script>", False)

.
.
.

私のページで:

<asp:Content ID="Content3" ContentPlaceHolderID="cph3" runat="Server">
.
.
.
<asp:HiddenField ID="hdnUrl" runat="server" Value="" />
<asp:HiddenField ID="hdnParameters" runat="server" Value="" />
<asp:HiddenField ID="hdnResult" runat="server" Value="" />

<script language="javascript" type="text/javascript">

    function ShowWindow()
    {

      alert('i am here');

      var url = document.getElementById('<%= hdnUrl.ClientID %>').value;
      var Parameters = document.getElementById('<%= hdnParameters.ClientID %>').value;

      //For test:      
      alert(url);  //------ i need to get here: "My page.aspx?...", but i always get: ""
      alert(parameters); // i need to get here my parameters,   but i always get: ""
      .
      .
      .

      var dialogWin = window.showModalDialog(url, "some text", parameters);  //showModalDialog window, will return a data that i need in CodeBehind 
      document.getElementById('<%= hdnResult.ClientID %>').value=dialogWin.result;
      //Then i could manage the result, in code-behind      
    }

</script>

</asp:Content>

隠しフィールド定義で私が設定した場合のみ:

<asp:HiddenField ID="hdnUrl" runat="server" Value="My text" />

このテキストは JavaScript アラートで取得できますが、コード ビハインドでテキストを定義する必要があります

ヘルプと提案をありがとう。URLとパラメータをwindow.showModalDialogに渡す別の方法はありますか??? または、window.showModalDialog の結果を code.behind で取得する別の方法???

4

1 に答える 1