博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【心得】create a data table in webMatrix is very easy!
阅读量:6118 次
发布时间:2019-06-21

本文共 1436 字,大约阅读时间需要 4 分钟。

我是刚 这个工具,现在正在testing……,发现他的确很好用,比如现在你要读取数据
你首先在data窗口设置好你需要读取的数据库,然后你把目标表直接拖到页面中,然后你什么也不做,这个时候,直接运行该页面,webmatrix会自动启动web matrix server,你发现数据已经读出来了,你根本不需要设置连接字符,也不要在unload里写sub,就可以直接读出数据来了,是不是很easy…………
浏览code,发现他已经自动完成了数据度曲的代码,代码如下:
None.gif
<
form runat
=
"
server
"
>
None.gif        
<
wmx:AccessDataSourceControl id
=
"
AccessDataSourceControl1
"
 runat
=
"
server
"
 ConnectionString
=
"
Provider=Microsoft.Jet.OLEDB.4.0; Ole DB Services=-4; Data Source=F:\Test\webmatrix\Dqsm.mdb
"
 SelectCommand
=
"
SELECT * FROM [AllStore]
"
></
wmx:AccessDataSourceControl
>
None.gif        
<
wmx:MxDataGrid id
=
"
MxDataGrid1
"
 runat
=
"
server
"
 AllowPaging
=
"
True
"
 CellPadding
=
"
3
"
 BorderStyle
=
"
None
"
 DataSourceControlID
=
"
AccessDataSourceControl1
"
 AllowSorting
=
"
True
"
 BorderWidth
=
"
1px
"
 BackColor
=
"
White
"
 DataMember
=
"
AllStore
"
 BorderColor
=
"
#CCCCCC
"
 DataKeyField
=
"
StoreID
"
>
None.gif            
<
FooterStyle forecolor
=
"
#000066
"
 backcolor
=
"
White
"
></
FooterStyle
>
None.gif            
<
SelectedItemStyle forecolor
=
"
White
"
 font
-
bold
=
"
True
"
 backcolor
=
"
#669999
"
></
SelectedItemStyle
>
None.gif            
<
PagerStyle backcolor
=
"
White
"
 mode
=
"
NumericPages
"
 horizontalalign
=
"
Center
"
 forecolor
=
"
#000066
"
></
PagerStyle
>
None.gif            
<
HeaderStyle forecolor
=
"
White
"
 font
-
bold
=
"
True
"
 backcolor
=
"
#006699
"
></
HeaderStyle
>
None.gif            
<
ItemStyle forecolor
=
"
#000066
"
></
ItemStyle
>
None.gif        
</
wmx:MxDataGrid
>
None.gif        
<!--
 Insert content here 
-->
None.gif    
</
form
>
None.gif
运行的结果如下:
data.gif
好了,先到这里,因为我也正在学习中
如果想要得到更多的学习资源,请到

转载地址:http://kzmka.baihongyu.com/

你可能感兴趣的文章
Debian 6.05安装后乱码
查看>>
欢迎大家观看本人录制的51CTO精彩视频课程!
查看>>
IntelliJ IDEA中设置忽略@param注释中的参数与方法中的参数列表不一致的检查
查看>>
关于软件开发的一些感悟
查看>>
uva 10806
查看>>
纯CSS3绘制的黑色图标按钮组合
查看>>
Linux中环境变量文件及配置
查看>>
从0开始学Flutter
查看>>
mysql操作入门基础之对数据库和表的增删改查
查看>>
IIS负载均衡
查看>>
分布式事务,EventBus 解决方案:CAP【中文文档】
查看>>
Linux下的CPU性能瓶颈分析案例
查看>>
spring mvc入门
查看>>
2012在数据库技术会议上的讲话PPT打包
查看>>
【Android】 TextView设置个别字体样式
查看>>
python svn
查看>>
raise语句
查看>>
sequence2(高精度dp)
查看>>
ABP实战--集成Ladp/AD认证
查看>>
存储过程
查看>>