How to pass multiple values from child widow

In my previous post which was relating to implementing dialog box in web based application, I have provided some examples to popping up a dialog box using showModalDialog javascript function. In that post, I have written about returning a value from child window to parent window using returnValue attribute. In this post, I will try to explain a hack of returning multiple values from child window.

In this hack, we are returning an instance of the class which is already populated with multiple field values in child window. So indirectly we are actually returning multiple values which are bind to an object and we return this object to parent window.

Our basic requirement here is that when user click on a button in parent form, application shouldl open a child dialog box. In this child dialog box, user will enters some values and click on submit button. Application will thereafter close the child window and populate all entered values in parent controls.

First create a project with two web forms
Parent.aspx
Child.aspx

Parent.aspx will have two text box control and one “Add Book†button. Clicking on this button will open a dialog box. Here is the code:

Parent.aspx
<script>
function AddBook()
{
var returnVal = window.showModalDialog("Child.aspx", null, "dialogHeight:150px;dialogWidth:300px; center:yes;help:no;resizable:no;status:no;")
document.getElementById("textboxBookID").value = returnVal.book_id;
document.getElementById("textboxBookName").value = returnVal.book_name;
return false;
}
</script>
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<asp:textbox id="textboxBookID" style="Z-INDEX: 100; LEFT: 104px; POSITION: absolute; TOP: 56px"
runat="server"></asp:textbox><asp:label id="Label2" style="Z-INDEX: 105; LEFT: 16px; POSITION: absolute; TOP: 88px" runat="server">Book Name :</asp:label><asp:textbox id="textboxBookName" style="Z-INDEX: 101; LEFT: 104px; POSITION: absolute; TOP: 88px"
runat="server"></asp:textbox><asp:button id="buttonAdd" style="Z-INDEX: 102; LEFT: 104px; POSITION: absolute; TOP: 24px"
runat="server" Text="Add Book"></asp:button>
<asp:Label id="Label1" style="Z-INDEX: 104; LEFT: 16px; POSITION: absolute; TOP: 56px" runat="server">Book ID :</asp:Label></form>
</body>

Parent.aspx.cs
private void Page_Load(object sender, System.EventArgs e)
{
buttonAdd.Attributes.Add("onclick", "return AddBook();");
}

Now we come to child window. This page will have two text box and a submit button. On clicking on submit button, application will return entered value to parent form.

Child.aspx
<script>
function Books()
{
var book_id = "";
var book_name = "";
}

function ReturnBook()
{
var Books = new Object();
Books.book_id = document.getElementById("textboxBookID").value;
Books.book_name = document.getElementById("textboxBookName").value;
window.returnValue = Books;
window.close();
return false;
}
</script>
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<asp:TextBox id="textboxBookID" style="Z-INDEX: 100; LEFT: 104px; POSITION: absolute; TOP: 16px"
runat="server"></asp:TextBox>
<asp:Label id="Label2" style="Z-INDEX: 105; LEFT: 16px; POSITION: absolute; TOP: 48px" runat="server">Book Name :</asp:Label>
<asp:TextBox id="textboxBookName" style="Z-INDEX: 101; LEFT: 104px; POSITION: absolute; TOP: 48px"
runat="server"></asp:TextBox>
<asp:Button id="buttonSubmit" style="Z-INDEX: 102; LEFT: 104px; POSITION: absolute; TOP: 80px"
runat="server" Text="Submit"></asp:Button>
<asp:Label id="Label1" style="Z-INDEX: 104; LEFT: 16px; POSITION: absolute; TOP: 16px" runat="server">Book ID :</asp:Label>
</form>
</body>

Child.aspx.cs
private void Page_Load(object sender, System.EventArgs e)
{
buttonSubmit.Attributes.Add("onclick", "return ReturnBook()");
}

To reduce the complexity of code, I have removed some part of the code. You can download whole application anytime which is attached at end of the article.

In code, we are not doing any thing interesting in Parent.aspx page. Here we are simply adding an attribute for “onclick†event on “Add Book†button. Clicking on this button will open a dialog box where user will enters the book fields.

Now in Child.aspx, when user clicks on the submit button, we first create instance of our entity Book which is having two fields book_id, book_name. After creating an instance we populate its fields with respective values from controls and then we assign this entity to returnValue of window object. This is the most interesting part of the application. We are actually type casting the returnValue property of the window to our entity. After casting rturnValue, we are closing that child window.

As returnValue property has been cast into book entity now, we simply need to get field values from this returnValue property and assign those values to their respective control.

You will also noticed while running this application, that there is no post back while fetching values in child window and then populating those in parent form.

Download Attachment

转载于:https://www.cnblogs.com/neozhu/archive/2009/02/15/1391042.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值