- 博客(12)
- 收藏
- 关注
原创 C# SqlSever 多条件查询 一种稍简单的方法
重点是:(contractCustomCompany LIKE '%" + this.txtcontractCustomCompany.Value + "%' or contractCustomCompany is null)示例:string sqlstrB = "select * from ViewFinaAmountwhere(contractCustomCompany LIKE '%" + this.txtcontractCustomCompany.Value + "%' or
2022-05-08 21:07:22 654
原创 DropdownList二级联动
前台:<div class="col-md-2"> <div class="input-group"> <span class="input-group-addon" id="AfEnduser2">省</span> <asp:DropDownList ID="DDLprovince" class="form-control" runat="ser...
2022-03-28 14:53:44 463
原创 gridview SelectedIndexChanged事件
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="CateID" AllowPaging="True" EmptyDataText="没有数据记录!!" OnP
2018-08-28 02:14:33 2637
原创 c# count(*) 返回查询值
DB db = new DB(); string CategoryCode = this.inputLP.Value.Trim(); string cmdstr = "SELECT count(*) FROM [BomCateTec] where CategoryCode='" + CategoryCode + "'"; DataTable dt ...
2018-08-17 16:20:55 4909
转载 关于日期的用法
1、<script type="text/javascript"> var mydateInput = document.getElementById("aDate"); var date = new Date(); var dateString = date.getFullYear() + "/" + (date.getMonth() ...
2018-08-16 01:03:34 193
原创 模糊查询-2
1:SELECT * FROM 表名 where 日期字段 like date_format(now(),"%X/%U%") 2:前台:div class="form-search"> <input class="input-medium search-query" type="text" ID="inputMatDcode" run
2018-08-14 16:19:47 198
原创 dropdownlist 两种到值法
获取dropdownlist选中的值 DDLmatCSpecID.SelectedValue; 获取dropdownlist选中的文本 DDLmatCSpecID.SelectedItem.Text;
2018-08-14 11:24:11 185
原创 不同的数据赋值
string mAtStyleNa = this.txtmAtName.Value.Trim(); int mAtStyleID = int.Parse(DDLtmAtStyleID.SelectedValue.ToString()); Decimal mAtdensity = Convert.ToDecimal(dEcmAt...
2018-08-14 00:17:33 304
原创 dropdownlist 新增一条“请选择” 以及判定选项不能为空
DDLyNID.Items.Insert(0, "-请选择-");DDLtmAtStyleID.SelectedIndex == 0
2018-08-14 00:03:33 891
原创 C#之Gridview&dropdownlist控件级联应用
<%@ Page Title="" Language="C#" MasterPageFile="MasterPageSys.master" AutoEventWireup="true" CodeFile="sysCustomCAdd.aspx.cs" Inherits="sysCustomCAdd" %><asp:Content ID=&quo
2018-08-07 12:54:06 666
原创 C#之Gridview&dropdownlist控件应用
第一部份:前端代码:<%@ Page Title="" Language="C#" MasterPageFile="MasterPageSys.master" AutoEventWireup="true" CodeFile="sysCustomCName.aspx.cs" Inherits="sysCustomCName" %><asp:C
2018-08-01 01:28:54 1007
原创 C#之 DropdownList控件使用心得
第一部份:20180718 基础应用 取值1、前台代码:<asp:DropDownList ID="DDLcustomID" runat="server" DataTextField="customName" DataValueField="customID" EnableViewState="True" AppendDataBoundItems="False"
2018-07-18 13:47:22 5473
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人