摘要: 1.document.write(""); 输出语句 2.JS中的注释为// 3.传统的HTML文档顺序是:document->html->(head,body) 4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document) 5.得到表单中元素的名称和值:document.getElementById("表单中元素的I... 阅读全文
posted @ 2008-05-18 22:22 熊忠荣 阅读(254) 评论(0) 推荐(0) 编辑
摘要: create procedure sp_split_string ( @string NVARCHAR(4000) ) AS BEGIN DECLARE @object_id nvarchar(500) DECLARE @i INT DECLARE @len INT print @st... 阅读全文
posted @ 2008-05-18 22:21 熊忠荣 阅读(906) 评论(0) 推荐(0) 编辑
摘要: exec sp_executesql要求SQL语句是nvarchar型,execute则无此要求,所以前面没有错 select * from dbo.btype begin declare @strWhere nvarchar(100) set @strWhere='typeId>00002' declare @tblName varchar(100) set @tblNa... 阅读全文
posted @ 2008-05-18 22:19 熊忠荣 阅读(591) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.W... 阅读全文
posted @ 2008-05-18 22:18 熊忠荣 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 动态表格 protected void BindTable(string Bargain_id) { string strTable; strTable =... 阅读全文
posted @ 2008-05-18 22:17 熊忠荣 阅读(294) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.W... 阅读全文
posted @ 2008-05-18 22:15 熊忠荣 阅读(251) 评论(0) 推荐(0) 编辑
摘要: exec sp_addlinkedserver 'YTD_SERVER_lnk','','SQLOLEDB','220.162.244.127' exec sp_addlinkedsrvlogin 'YTD_SERVER_lnk','false',null,'admin','pwd' select TradeId,Bargain_Code,Cust_LinkMan from YTD_SER... 阅读全文
posted @ 2008-05-18 22:14 熊忠荣 阅读(152) 评论(0) 推荐(0) 编辑
摘要: protected void Page_Load(object sender, EventArgs e) { Button1.Attributes.Add("onclick", "this.form.target='_newName'"); } protected void Button1_Click(object sender, EventArgs... 阅读全文
posted @ 2008-05-18 22:13 熊忠荣 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 无标题页 Loading using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.We... 阅读全文
posted @ 2008-05-18 22:11 熊忠荣 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 无标题页 省 市 区域 ... 阅读全文
posted @ 2008-05-18 22:06 熊忠荣 阅读(681) 评论(0) 推荐(0) 编辑