使用dojo的一个对话框功能,对话框有个提交按钮,怎么执行cs里的程序呢?
TCat 2007-07-16 12:44:55 下面是网页中的一段代码,OnClick="Button1_Click"怎么执行不起来呢?
望了解dojo的朋友指点一下。
<div dojoType="dialog" id="dialog0" bgColor="white" bgOpacity="0.5" toggle="fade" toggleDuration="250">
<table>
<tr>
<td>Name:</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Location:</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Description:</td>
<td><input type="text"></td>
</tr>
<tr>
<td>
id</td>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td>Location:</td>
<td><input type="file"></td>
</tr>
<tr>
<td colspan="2" align="center">
<asp:Button ID="Button1" runat="server" Text="提交" OnClick="Button1_Click" />
<asp:Button ID="hider0" runat="server" Text="关闭" OnClick="hider0_Click" /></td>
</tr>
</table>
</div>