锘??xml version="1.0" encoding="utf-8" standalone="yes"?>久久精品最新地址,超碰国产在线,国内在线免费高清视频 http://www.aygfsteel.com/zylfanny/category/37123.htmlzh-cn Thu, 24 Dec 2009 07:12:38 GMT Thu, 24 Dec 2009 07:12:38 GMT 60 SQL COUNT() Function http://www.aygfsteel.com/zylfanny/articles/305747.htmlfanny fanny Sat, 12 Dec 2009 13:58:00 GMT http://www.aygfsteel.com/zylfanny/articles/305747.html http://www.aygfsteel.com/zylfanny/comments/305747.html http://www.aygfsteel.com/zylfanny/articles/305747.html#Feedback 0 http://www.aygfsteel.com/zylfanny/comments/commentRss/305747.html http://www.aygfsteel.com/zylfanny/services/trackbacks/305747.html 闃呰鍏ㄦ枃 ]]> SCOPE_IDENTITY (Transact-SQL) http://www.aygfsteel.com/zylfanny/articles/305534.htmlfanny fanny Fri, 11 Dec 2009 03:39:00 GMT http://www.aygfsteel.com/zylfanny/articles/305534.html http://www.aygfsteel.com/zylfanny/comments/305534.html http://www.aygfsteel.com/zylfanny/articles/305534.html#Feedback 0 http://www.aygfsteel.com/zylfanny/comments/commentRss/305534.html http://www.aygfsteel.com/zylfanny/services/trackbacks/305534.html 闃呰鍏ㄦ枃 ]]> Sql 涓?like鐢ㄦ硶 http://www.aygfsteel.com/zylfanny/articles/305369.htmlfanny fanny Thu, 10 Dec 2009 02:13:00 GMT http://www.aygfsteel.com/zylfanny/articles/305369.html http://www.aygfsteel.com/zylfanny/comments/305369.html http://www.aygfsteel.com/zylfanny/articles/305369.html#Feedback 0 http://www.aygfsteel.com/zylfanny/comments/commentRss/305369.html http://www.aygfsteel.com/zylfanny/services/trackbacks/305369.html 闃呰鍏ㄦ枃 ]]> SqlParameter鐢ㄦ硶 http://www.aygfsteel.com/zylfanny/articles/305368.htmlfanny fanny Thu, 10 Dec 2009 01:58:00 GMT http://www.aygfsteel.com/zylfanny/articles/305368.html http://www.aygfsteel.com/zylfanny/comments/305368.html http://www.aygfsteel.com/zylfanny/articles/305368.html#Feedback 0 http://www.aygfsteel.com/zylfanny/comments/commentRss/305368.html http://www.aygfsteel.com/zylfanny/services/trackbacks/305368.html 闃呰鍏ㄦ枃 ]]> 瀵規暟鎹簱榪涜鈥滄煡璇⑩濇搷浣?/title> http://www.aygfsteel.com/zylfanny/articles/297321.htmlfanny fanny Tue, 06 Oct 2009 11:43:00 GMT http://www.aygfsteel.com/zylfanny/articles/297321.html 鍩轟簬涓婄瘒鐨?#8220;澧炲姞”鎿嶄綔錛岀幇鍦ㄥ澧炲姞鐨勬暟鎹繘琛屾煡璇€?br />
鍦?#8220;璁捐欏甸潰”涓婃坊鍔犱竴涓狦ridView鎺т歡錛屽鍥撅細
鐒跺悗鍐欎唬鐮佸涓嬶細
using System;
using System.Configuration;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Data.SqlClient;
public partial class _Default :Page
{
protected void Page_Load( object sender, EventArgs e)
{
if ( ! IsPostBack ) // 鏄惁鏄〉闈㈠洖浼狅紝濡傛灉鏄洖浼犲垯涓嶆墽琛孊indList()鏂規硶
{
BindList(); // 欏甸潰絎竴嬈¤繍琛岀殑鏃跺欏彧闇錛屽叾浣欑殑欏甸潰鍥炰紶涓嶆墽琛岋紝淇濊瘉鎬ц兘錛?/span>
}
}
private void BindList()
{
string sql = " select * from S_Information " ; // SQL鎵ц璇彞
// 鏁版嵁搴撹繛鎺ュ瓧絎︿覆
string connectionString = " server = \ " .\ " ;DataBase = \ " student system\ " ;Uid =\ " sa\ " ;pwd = \ " sasa\ " ; " ; // 鍙嶆枩鏉犱唬琛ㄨ漿鎰忓瓧絎?br />
// 寤虹珛榪炴帴
System.Data.SqlClient.SqlConnection con = new System.Data.SqlClient.SqlConnection(connectionString);
// 寤虹珛鍛戒護瀵硅薄
SqlCommand cmd = new SqlCommand(sql, con);
// 寤虹珛瑁呰澆鏁版嵁鐨勮濺瀛?/span>
SqlDataAdapter sad = new SqlDataAdapter(cmd);
// 瀹氫箟鏁版嵁闆?杞﹀瓙浠嶴QL鏁版嵁搴撻噷闈㈡媺鍑虹殑鏁版嵁鏀懼湪榪欎釜鏁版嵁闆嗕粨搴撻噷闈㈢瓑寰呬嬌鐢?/span>
DataSet ds = new DataSet();
// 鎵撳紑榪炴帴
con.Open();
// 寮濮嬭杞絊QL璇彞鎵鏌ヨ鍒扮殑鏁版嵁鍒版暟鎹泦浠撳簱
sad.Fill(ds);
con.Close();
// 緇欐暟鎹粦瀹氭帶浠禛ridView 鎸囧畾鏁版嵁
this .GridView1.DataSource = ds;
this .GridView1.DataBind(); // 鎵ц緇戝畾鏂規硶
}
}
榪愯緇撴灉濡備笅錛?br />
]]>鍦⊿QL鏌ヨ鍒嗘瀽鍣ㄤ腑榪涜澧炲垹鏀規煡絳夌畝鍗曟搷浣?/title> http://www.aygfsteel.com/zylfanny/articles/297319.htmlfanny fanny Tue, 06 Oct 2009 10:56:00 GMT http://www.aygfsteel.com/zylfanny/articles/297319.html 闃呰鍏ㄦ枃 ]]> 瀵規暟鎹簱榪涜鈥滃鍔犫濇搷浣?/title> http://www.aygfsteel.com/zylfanny/articles/297306.htmlfanny fanny Tue, 06 Oct 2009 05:11:00 GMT http://www.aygfsteel.com/zylfanny/articles/297306.html 闃呰鍏ㄦ枃 ]]> SQL Server 2005鏁版嵁綾誨瀷 http://www.aygfsteel.com/zylfanny/articles/250295.htmlfanny fanny Wed, 07 Jan 2009 03:14:00 GMT http://www.aygfsteel.com/zylfanny/articles/250295.html http://www.aygfsteel.com/zylfanny/comments/250295.html http://www.aygfsteel.com/zylfanny/articles/250295.html#Feedback 0 http://www.aygfsteel.com/zylfanny/comments/commentRss/250295.html http://www.aygfsteel.com/zylfanny/services/trackbacks/250295.html 闃呰鍏ㄦ枃 ]]> 璁よ瘑鈥滄煡璇㈠垎鏋愬櫒鈥?杞級 http://www.aygfsteel.com/zylfanny/articles/249870.htmlfanny fanny Mon, 05 Jan 2009 03:28:00 GMT http://www.aygfsteel.com/zylfanny/articles/249870.html http://www.aygfsteel.com/zylfanny/comments/249870.html http://www.aygfsteel.com/zylfanny/articles/249870.html#Feedback 0 http://www.aygfsteel.com/zylfanny/comments/commentRss/249870.html http://www.aygfsteel.com/zylfanny/services/trackbacks/249870.html 闃呰鍏ㄦ枃 ]]> sql server緋葷粺琛ㄨ緇嗚鏄?/title> http://www.aygfsteel.com/zylfanny/articles/249850.htmlfanny fanny Mon, 05 Jan 2009 02:27:00 GMT http://www.aygfsteel.com/zylfanny/articles/249850.html http://www.aygfsteel.com/zylfanny/comments/249850.html http://www.aygfsteel.com/zylfanny/articles/249850.html#Feedback 0 http://www.aygfsteel.com/zylfanny/comments/commentRss/249850.html http://www.aygfsteel.com/zylfanny/services/trackbacks/249850.html 闃呰鍏ㄦ枃 ]]> SQL2000 緋葷粺鏁版嵁搴撶殑鐢ㄩ?鍜?瀹炰緥鏁版嵁搴?/title> http://www.aygfsteel.com/zylfanny/articles/249844.htmlfanny fanny Mon, 05 Jan 2009 02:11:00 GMT http://www.aygfsteel.com/zylfanny/articles/249844.html http://www.aygfsteel.com/zylfanny/comments/249844.html http://www.aygfsteel.com/zylfanny/articles/249844.html#Feedback 0 http://www.aygfsteel.com/zylfanny/comments/commentRss/249844.html http://www.aygfsteel.com/zylfanny/services/trackbacks/249844.html 闃呰鍏ㄦ枃 ]]>
主站蜘蛛池模板:
高唐县 |
新龙县 |
饶平县 |
桐庐县 |
瓦房店市 |
鄂托克前旗 |
株洲县 |
扶风县 |
郯城县 |
黎平县 |
方正县 |
新沂市 |
嘉兴市 |
富锦市 |
安庆市 |
溧水县 |
晋江市 |
黎城县 |
彭阳县 |
河西区 |
德江县 |
浏阳市 |
泰来县 |
门源 |
琼海市 |
平原县 |
西吉县 |
滕州市 |
宜川县 |
建德市 |
开江县 |
阿拉善盟 |
香港 |
郯城县 |
吉木萨尔县 |
孝昌县 |
桑日县 |
嘉黎县 |
临泽县 |
贡山 |
香河县 |