快速业务通道

数据库组件 Hxj.Data (三十)(Asp.Net 页面自动赋值与取值)

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-20

在项目中的页面中经常会遇到界面的赋值与取值,特别是页面中项特别多的时候,取值和赋值往往是 体力活。

在组件中添加了一个简单的辅助,取值通过Request.From[“”]来实现,赋值则 document.getElementById(“”).value来实现。

下面我们来看示例代码:

例子是:Northwind数据库的Products表

页面代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
ProductName:<asp:TextBox runat="server" ID="txt_ProductName"></asp:TextBox><br />
SupplierID:<asp:TextBox runat="server" ID="txt_SupplierID"></asp:TextBox><br />
CategoryID:<asp:TextBox runat="server" ID="txt_CategoryID"></asp:TextBox><br />
QuantityPerUnit:<asp:TextBox runat="server" ID="txt_QuantityPerUnit"></asp:TextBox><br />
UnitPrice:<asp:TextBox runat="server" ID="txt_UnitPrice"></asp:TextBox><br />
UnitsInStock:<asp:TextBox runat="server" ID="txt_UnitsInStock"></asp:TextBox><br />
UnitsOnOrder:<asp:TextBox runat="server" ID="txt_UnitsOnOrder"></asp:TextBox><br />
ReorderLevel:<asp:TextBox runat="server" ID="txt_ReorderLevel"></asp:TextBox><br />
Discontinued:<asp:CheckBox ID="txt_Discontinued" runat="server" /><br />
<asp:Button ID="Button1" runat="server" Text="提交Insert" OnClick="Button1_Click" />
<asp:GridView ID="gridView" runat="server">
</asp:GridView>
</form>
</body>
</html>

后台赋值代码:

Products product = DbSession.Default.From<Products>().ToFirst();

EntityUtils.SetDocumentValue<Products>(product, "txt_");

再看执行效果:

数据库组件 Hxj.Data (三十)(Asp.Net 页面自动赋值与取值)

已经赋值成功了。

具体的实现是通过js来赋值的:

var txt_ProductID=document.getElementById(''txt_ProductID'');if(txt_ProductID) txt_ProductID.value=''1'';
var txt_ProductName=document.getElementById(''txt_ProductName'');if(txt_ProductName) txt_ProductName.value=''char\''\\\\s\'''';
var txt_SupplierID=document.getElementById(''txt_SupplierID'');if(txt_SupplierID) txt_SupplierID.value=''1'';
var txt_CategoryID=document.getElementById(''txt_CategoryID'');if(txt_CategoryID) txt_CategoryID.value=''1'';
var txt_QuantityPerUnit=document.getElementById(''txt_QuantityPerUnit'');if (txt_QuantityPerUnit)txt_QuantityPerUnit.value=''10 boxes x 20 bags'';
var txt_UnitPrice=document.getElementById(''txt_UnitPrice'');if(txt_UnitPrice) txt_UnitPrice.value=''150.8000'';
var txt_UnitsInStock=document.getElementById(''txt_UnitsI

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号