ctionString="Server=Localhost;UID=sa;PWD=secret;Database=Pubs"
DataKeyField="Customer_ID"
Mode="UpdateTable"
runat="Server" />
</body>
</html>
具体效果如下:
http://www.superexpertcontrols.com/dataform/samples/sample3.aspx
如果我们将模式设置为Custom,我们就可以设置提交表单以后的动作。比如,以下代码实现提交表单以后自动转到ThankYou.aspx页面。
<%@ Register TagPrefix="Super" Namespace="Superexpert.Data"
Assembly="Superexpert.DataForm" %>
<Script runat="Server">
Sub Form_Submit( s As Object, e As EventArgs )
myForm.Save()
Response.Redirect( "ThankYou.aspx" )
End Sub
</Script>
<html>
<head><title>DataFormCustom.aspx</title></head>
<body>
<super:SqlDataForm
id="myForm"
TableName="CustomerSurvey"
ConnectionString="Server=Localhost;UID=sa;PWD=secret;Database=Pubs"
Mode="Custom"
OnSubmit="Form_Submit"
runat="Server" />
</body>
</html>
具体效果如下:
http://www.superexpertcontrols.com/dataform/samples/sample4.aspx
三)设置DataForm样式
DataForm有四种样式我们可以修改:
1、HeaderStyle:定义数据表单的Header样式;
2、LabelStyle:定义数据表单的Label样式;
3、FieldStyle:定义数据表单的Field样式;
4、FooterStyle:定义数据表单的Footer样式;
DataForm还支持以下属性设置:
GridLines:定义数据表单的线格式,包括:None、Both、Horizontal和Vertical。
Height:数据表单控件高度;
Width:数据表单控件宽度;
BoderStyle:数据表单边框格式;
BorderWidth:数据表单边框宽度;
BorderColor:数据表单边框颜色;
CellPadding:数据表单控件大小;
CellSpacing:数据表单控件间间距;
我们现在看一个举例:
<%@ Register TagPrefix="Super" Namespace="Superexpert.Data"
Assembly="Superexpert.DataForm" %>
<html>
<head><title>DataFormStyle.aspx</title></head>
<body>
<super:SqlDataForm
HeaderStyle-backColor="Salmon"
FieldStyle-backColor="yellow"
LabelStyle-Font-Name="Script"
LabelStyle-Font-Size="28pt"
FooterStyle-backColor="blue"
Cellpadding="10"
Cellspacing="0"
GridLines="Both"
BorderStyle="Dashed"
BorderColor="red"
BorerWidth="10px"
LabelStyle-BackColor="lightgreen"
TableName="CustomerSurvey"
ConnectionString="Server=Localhost;UID=sa;PWD=secret;Database=Pubs"
runat="Server" />
</body>
</html>
具体效果如下:
http://www.superexpertcontrols.com/dataform/samples/sample5.aspx
四)自定义布局的DataForm
我们也可以自己增加控件设计数据表单布局,可以增加的控件如下:
● DataTextBox
● DataDropDownList
● DataRadioButton
● DataCheckbox
● DataListBox
● DataRadioButtonList
● DataLabel
没一个控件都扩展了标准控件的功能。这些控件都有两个属性:DataField和DataType。DataField让控件和数据库的