例如:心肌梗死部位:□前壁 □側壁□下壁 □後壁 □右室 其他____
前台:
後台給控制項新增選項:this.teothers.text = addcheckboxlistitems(this.checkboxlist1, shuzu, "");
提交:
string tj= getcheckboxlistvalue(this.checkboxlist1, this.teothers);
model.xinjigengsi = common.regverify.str(tj);
檢視賦值:
string ck= filternulltoempty(model.xinjigengsi);
this.teothers.text = addcheckboxlistitems(this.checkboxlist1, shuju, ck);
所需方法
方法1:public static string shuzu= ;
方法2:
public static string addcheckboxlistitems(listcontrol cbl, string arrresource, string stranalysis)
string str_array = str.split(new char , stringsplitoptions.removeemptyentries);
int j = 0;
for (int i = 0; i < arrresource.length; i++)
cbl.items.add(li);
}return strrtn;
}
方法3:
public static string str(string str)
方法4:
public static string filternulltoempty(string str)
else
}
方法5:
public static string getcheckboxlistvalue(checkboxlist cbl, textbox tb)
}if (!string.isnullorempty(str))
string str_others = tb.text.trim();
if (!string.isnullorempty(str_others))
strrtn += str;
return strrtn;
}
.textboxline
mysql 更新乙個字段 在他的後面新增字串
更新乙個字段,在它的後面加乙個字串,不查詢資料庫得到這個字段值 怎麼新增?例如 我的test表,有個user欄位,我現在想在它後面加了另乙個使用者的名字 我在mysql資料庫這樣寫 update test set user user phpchina where id 2 這樣是不對的,mysql資...
mysql多表乙個字段
先執行這三個 show variables like group concat max len 查詢大小 set global group concat max len 10240000 設定大小滿足執行後能夠存放所有的插入語句 set session group concat max len 10...
mysql乙個欄位為空時使用另乙個字段排序
表中有兩個日期欄位createdate,updatedate。其中updatedate可以為空,要求使用updatedate排序,如果updatedate為空則使用createdate排序,結果要順序排下來。按照常規方法 這樣的結果是為空的資料排在了最下面,不符合要求。這樣試試 這樣排的結果是先按u...