02 2019 档案

摘要:web.config是web应用程序的配置文件,为web应用程序提供相应配置(B/S) 浏览器/服务模式 app.config是桌面应用程序的配置文件,为桌面应用程序提供相应配置(C/S)客户机/服务器模式 ConfigurationSetting类是在.net 1.0版本中使用来读取配置文件。 C 阅读全文
posted @ 2019-02-15 15:52 韩小花 阅读(2998) 评论(0) 推荐(0)
摘要:<asp:DropDownList ID="DropDownList1" runat="server" Width="177px"> --拖动控件进入 <asp:ListItem Value="0">ALL</asp:ListItem> --编辑项,Text , Value <asp:ListIte 阅读全文
posted @ 2019-02-14 09:40 韩小花 阅读(148) 评论(0) 推荐(0)
摘要:1、isnull(参数1,参数2),判断参数1是否为NULL,如果是,返回参数2,否则返回参数1。 2、isnull(列名,0),isnull()函数是用来判断列名是否为null,如果为NUll,则返回0,否则,返回列名的值。 3、<>:是不等号,与!=一样 比如select 3 where 1<> 阅读全文
posted @ 2019-02-13 15:44 韩小花 阅读(4728) 评论(0) 推荐(1)