马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
对于中小型web应用来说,php有很强的竞争力,linux+apache+mysql+php(lamp)的组合几乎可以胜任绝大多数网站的解决方案,对于大型应用来讲,对于系统架构要求更高,需要有成熟的框架支持,jsp的struts是个不错的框架,国内介绍它的资料也非常多,应用逐渐广泛起来。asp就不用说了,下拉|下拉列表|下拉|下拉列表有[group]和[user]二个数据表,请求从这两个表中读出数据,并体现为二级下拉表,中选择[group]列表中的选项时,[user]列表中的选项响应改动。
[group]表对应的数据集为rsGroup,有以下字段:lngID_Group,strName_Group
[user]表对应的数据集为rsUser,有以下字段:lngID_User,lngGroupID,strName_User
思绪:先创建group和user的下拉列表;分离读进rsGroup和rsUser的数据;再创建change_select()函数,当group的下拉列表被改动时,实行该函数对user下拉列表举行更新。
代码以下:
<!―group的下拉列表-------------->
<selectname="sltGroupID"
>
<optionvalue="0">用户组……</option>
<%
Fori=1TorsGroup.RecordCount
Response.Write"<optionvalue=’"&lngID_Group&"’>"&strName_Group&"</option>"
rsGroup.MoveNext
Next
%>
</select>
<!―user的下拉列表-------------->
<selectname="sltUserID">
<optionvalue="0">用户……</option>
</select>
<scriptlanguage="JavaScript">
//读进rsUser的数据
arrSelect=newArray();
arrSelect[0]=newArray("用户……",0,0)
<%
Fori=1TorsUser.RecordCount
%>
arrSelect[<%=i%>]=newArray("<%=strName_User%>","<%=lngGroupID%>","<%=lngID_User%>");
<%
rsUser.MoveNext
Next
%>
//更新user下拉列表的函数
functionchange_select(selvalue)
{
document.all.sltUserID.length=0;
vari;
for(i=0;i<arrSelect.length;i++)
{
if(arrSelect[i][1]==selvalue)
{
varnewOption=newOption(arrSelect[i][0],arrSelect[i][2]);
document.all.sltUserID.add(newOption);
}
}
}
</script>
运转了局以下:
<!―group的下拉列表-------------->
<selectname="sltGroupID"
>
<optionselectedvalue="0">用户组……</option>
<optionvalue=’1’>直属机构</option>
<optionvalue=’2’>做事处</option>
<optionvalue=’3’>手艺部</option>
</select>
<!―user的下拉列表-------------->
<selectname="sltUserID">
<optionselectedvalue="0">用户……</option>
</select>
<scriptlanguage="JavaScript">
//读进rsUser的数据
arrSelect=newArray();
arrSelect[0]=newArray("用户……",0,0)
arrSelect[1]=newArray("总包办","1","1");
arrSelect[2]=newArray("收集中央","1","15");
arrSelect[3]=newArray("大众平台","1","4");
arrSelect[4]=newArray("售后部","1","20");
arrSelect[5]=newArray("广州","2","24");
arrSelect[6]=newArray("上海","2","23");
arrSelect[7]=newArray("售前撑持","3","8");
arrSelect[8]=newArray("研发中央","3","9");
//更新user下拉列表的函数
functionchange_select(selvalue)
{
//同上,略。
}
</script></p>ASP由于使用了COM组件所以它会变的十分强大,但是这样的强大由于WindowsNT系统最初的设计问题而会引发大量的安全问题。只要在这样的组件或是操作中一不注意,哪么外部攻击就可以取得相当高的权限而导致网站瘫痪或者数据丢失; |