【提问】dropdownlist 不触发selectedindexchanged
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>内容管理系统</title>
<style>
body
{
scrollbar-base-color:#C0D586;
scrollbar-arrow-color:#FFFFFF;
scrollbar-shadow-color:DEEFC6;
}
</style>
</head>
<frameset rows="60,*" cols="*" frameborder="no" border="0" framespacing="0">
<frame src="top.aspx" name="topFrame" scrolling="no">
<frameset cols="180,*" name="btFrame" frameborder="NO" border="0" framespacing="0">
<frame src="menu.aspx" noresize name="menu" scrolling="yes">
<frame src="main.aspx" noresize name="main" scrolling="yes">
</frameset>
</frameset>
<noframes>
<body>您的浏览器不支持框架!</body>
</noframes>
</html>
在frameset的一边放了一个dropdownlist
然后在dropdownlist的selectedindexchanged里面写了些
代码,
可是调试的时候我去选择下拉框
它不会执行这个selectedindexchanged事件
这是为什么
难道和框架有原因?