`
Stanleylei
  • 浏览: 22349 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
公司要求做一个企业视频直播的小项目,要求在线实时直播视频 http://www.starv.tv/vcard/
在互联网了解到北京星谷科技研发关于3GPP流媒体,非常不错。 http://www.starv.tv/ http://v.starv.tv/
我做的电子商务网站 WWW.51tyg.com VS2008+SQL2005+AJXA
<style> #center {   position: relative;   margin:5px auto auto; } </style> </head> <body> <html> <div id='center'> </div> </body> </html>
方法:两个步骤 1.Aspx页面文件中加入 <META http-equiv="content-type" content="text/html; charset=gb2312"> 2.在页面加载事件中加入下句: Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
怎样提高WebService的性能 服务器端WebService程序 using System.Runtime.Serialization.Formatters.Binary; using System.IO; using System.IO.Compression; using System.Data.SqlClient; ……… public class Service1 : System.Web.Services.WebService {     [WebMethod(Description = "直接返回 DataSet 对象。")]     public Dat ...
//根据条件着色GridViewRow     protected void gvCarApply_RowDataBound(object sender, GridViewRowEventArgs e)     {         if (e.Row.RowType == DataControlRowType.DataRow)         {             string strFlag = Convert.ToString(DataBinder.Eval(e.Row.DataItem, "flag"));             if (strFlag == & ...
删除sql表中的重复项 --测试数据 /*----------------------------- select * from test-----------------------------*/ id          pid         ----------- ----------- 1           1 1           1 2           2 3           3 3           3 3           3 (所影响的行数为 6 行) 首先,如何查询table中有重复记录 select *,count(1) as rownum fr ...
软件工程模型     谈起测试学,不得不讨论一下软件工程模型,因为测试学与软件工程学的发展依依相关,相辅相成。另外对于比较先进的测试理念,测试工程师应该贯穿于软件工程的整体过程之中。     瀑布模型     这 ...
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.SqlClient; namespace EquipmentMS.BaseClass {     class DataBase:IDisposable     {         private SqlConnection con;  //创建连接对象                 #region   打开数据库连接         /// <summary>      ...

C# SQLHelper

    博客分类:
  • .Net
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.SqlClient; namespace CRM.BaseClass {     class DB     {         #region  建立数据库连接         /// <summary>         /// 建立数据库连接.         /// </summary>         /// <returns>返回SqlConne ...

SQLHelper

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Data.SqlClient; using System.Configuration; namespace DAL {     public class SQLHelper     {         private SqlConnection conn = null;         private SqlCommand cmd = null;        ...
using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Data.SqlClient; /// <summary> /// DataBase 的摘 ...
getData.js var week; if(new Date().getDay()==0)          week="星期日" if(new Date().getDay()==1)          week="星期一" if(new Date().getDay()==2)          week="星期二" if(new Date().getDay()==3)          week="星期三" if(new Date().getDay()==4)          week="星期四 ...
C#调用oracle存储过程 创建Oracle过程存储 create or replace procedure proce_test(paramin in varchar2,paramout out varchar2,paraminout in out varchar2)   as    varparam varchar2(28);   begin    varparam:=paramin;    paramout:=varparam|| paraminout;    end;   2.测试过程存储   declare    param_out varchar2(28);    par ...
Global site tag (gtag.js) - Google Analytics