|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ASP在国内异常流行,因为国内大多使用的是盗版的Windows和盗版的SQLServer,而ASP+COM+SQLServer实际上也是一种不错的搭配,其性能也不输于PHP+MYSQL,特别是Windows系统和SQLServer都有图形界面,比APACHE和MYSQL易于维护,因此对于不重视知识产权的国家来说也是一种不错的选择。datagrid|控件//创立句柄托付
privatevoiddgOrderConfirm_ItemCreated(objectsender,System.Web.UI.WebControls.DataGridItemEventArgse)
{
if(e.Item.ItemType==ListItemType.Item||e.Item.ItemType==ListItemType.AlternatingItem)
{
CheckBoxcb=(CheckBox)e.Item.FindControl("cbselect");
cb.CheckedChanged+=newSystem.EventHandler(this.cbselectChanged);
}
}
//创立事务
privatevoidcbselectChanged(objectsender,System.EventArgse)
{
CheckBoxcb=(CheckBox)sender;
DataGridItemli=(DataGridItem)cb.Parent.Parent;
if(cb.Checked==true)
{
li.Cells[8].Text=string.Format("{0:F2}",float.Parse(li.Cells[7].Text)*(float.Parse(((TextBox)li.FindControl("tbdiscount")).Text))).ToString();
this.lbgetsum.Text=string.Format("{0:F2}",(float.Parse(this.lbgetsum.Text)+float.Parse(li.Cells[8].Text))).ToString();
}
else
{
this.lbgetsum.Text=string.Format("{0:F2}",(float.Parse(this.lbgetsum.Text)-float.Parse(li.Cells[8].Text))).ToString();
li.Cells[8].Text="";
}
}
//遍历datagrid
foreach(DataGridItemdgiinDataGrid1.Items)
{
if(((CheckBox)dgi.FindControl("cbselect")).Checked&&(((CheckBox)dgi.FindControl("cbback")).Checked))
{
Response.Write(string.Format("<scriptlanguage=javascript>alert("不克不及收款和退单同时都选中");</script>"));
return;
}
}
</p>ActiveServerPage技术为应用开发商提供了基于脚本的直观、快速、高效的应用开发手段,极大地提高了开发的效果。在讨论ASP的安全性问题之前,让我们来看看ASP是怎么工作的。 |
|