C# DropDownList中点击打开新窗口的方法
时间:2021-10-20 08:14:13|栏目:.NET代码|点击: 次
1、页面上添加
复制代码 代码如下:
<asp:DropDownList ID="DropDownList1" runat="server">
</asp:DropDownList>
2、在head之间
复制代码 代码如下:
<script type="text/javascript">
function openwindow(url) {
if (url != "") {
window.open(url);
}
}
</script>
3、cs代码
复制代码 代码如下:
protected void Page_Load(object sender, EventArgs e)
{
DropDownList1.Attributes.Add("onchange", "javascript:openwindow(this.value)");
}
上一篇:C#分屏控件用法实例
栏 目:.NET代码
本文标题:C# DropDownList中点击打开新窗口的方法
本文地址:http://www.codeinn.net/misctech/180589.html