DataTable.Copy 建立的新 DataTable 與相同的資料。
DataTable.Clone 建立的新 DataTable 不包含任何資料,只有相同的資料結構。
DataTable.Copy 建立的新 DataTable 與相同的資料。
DataTable.Clone 建立的新 DataTable 不包含任何資料,只有相同的資料結構。
在網路上常看到的命名規則做個整理...
Web Control
Button | btn | CheckBox | chk |
CheckBoxList | chkl | DataGrid | dgrd, dg |
DataList | dlst | DropDwonList | ddl, drop |
FileUpload | fup | HiddenField | hid, hidden |
HyperLink | link, hlk | Image | img |
ImageButton | imgbtn, ibtn | Label | lbl |
ListBox | Lst | Literal | lit |
Panel | panel, pnl | RadioButton | rad |
RadioButtonList | radl | TextBox | txb, txt |
Command | cmd, comm | Connection | conn, con |
GridView | gv | Dataset | ds, dst |
Datarow | dr, drow | DataTable | dt |
變數
[VB]
If Not IsNothing(DropDownList1.Items.FindByText(strText)) Then
DropDownList1.Items.FindByText(strTex)).Selected = True
End If
// 題目: 斜紋地磚
//@--@--@--
//-@--@--@-
//--@--@--@
//@--@--@--
DataTable dt = new DataTable();
dt.Columns.Add("Column_1", typeof(int));
dt.Columns.Add("Column_2", typeof(string));
dt.Columns.Add("Column_3", typeof(string));
dt.Rows.Add(1, "二", "C");
1. 到 Blogger 管理面介 > 範本 > 編輯html
2. 在編輯視窗內搜尋
<title><data:blog.pageTitle/></title>
3. 語法請替換成
<b:if cond='data:blog.pageType == "index"'> <title><data:blog.title/></title> <b:else/> <title><data:blog.pageName/> - <data:blog.title/></title> </b:if>
4. 存檔 收工
// 題目:
//依成績查看評等:
//90分(含)~100分(含)為A等
//80分(含)~89分(不含)為B等
//70分(含)~79分(不含)為C等
// 題目:陣列排序
int[] a = { 10, 99, 15, 2, 58, 28, 94 };
int N = a.Length;
int t = 0;
for (int i = 0; i < N - 1; i++)
<script>
$(document).ready(function() {
$( "#<%= btnSendAbacus.ClientID %>" ).click(function() {
$("#<%= GridView1.ClientID %>").find('input:checkbox[id$="chkChoose"]').each(function() {
if($(this).is(":checked"))
// 題目:印出由1到200,所有能被13所整除的整數。
string strPrint = "";
for (int ii = 1; ii <= 200; ii++)
{
if(ii % 13 ==0){