文章列表
刚做完的企业视频直播页面设计
- 博客分类:
- 网页设计篇
公司要求做一个企业视频直播的小项目,要求在线实时直播视频
http://www.starv.tv/vcard/
在互联网了解到北京星谷科技研发关于3GPP流媒体,非常不错。
http://www.starv.tv/
http://v.starv.tv/
我做的电子商务网站
WWW.51tyg.com
VS2008+SQL2005+AJXA
- 2009-10-12 11:29
- 浏览 722
- 评论(0)
<style>
#center {
position: relative;
margin:5px auto auto;
}
</style>
</head>
<body>
<html>
<div id='center'>
</div>
</body>
</html>
- 2009-09-08 09:28
- 浏览 785
- 评论(0)
方法:两个步骤
1.Aspx页面文件中加入
<META http-equiv="content-type" content="text/html; charset=gb2312">
2.在页面加载事件中加入下句:
Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
- 2009-08-22 09:40
- 浏览 995
- 评论(0)
怎样提高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 ...
- 2009-07-29 17:08
- 浏览 982
- 评论(0)
//根据条件着色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 == & ...
- 2009-05-25 16:22
- 浏览 906
- 评论(0)
删除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 ...
- 2009-04-12 21:19
- 浏览 1056
- 评论(0)
软件工程模型
谈起测试学,不得不讨论一下软件工程模型,因为测试学与软件工程学的发展依依相关,相辅相成。另外对于比较先进的测试理念,测试工程师应该贯穿于软件工程的整体过程之中。
瀑布模型
这 ...
- 2009-04-12 20:56
- 浏览 647
- 评论(0)
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>
...
- 2009-04-08 23:01
- 浏览 1387
- 评论(0)
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 ...
- 2009-04-08 22:56
- 浏览 1219
- 评论(0)
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;
...
- 2009-04-08 22:45
- 浏览 821
- 评论(0)
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 的摘 ...
- 2009-04-08 22:32
- 浏览 1534
- 评论(0)
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="星期四 ...
- 2009-04-08 22:22
- 浏览 799
- 评论(0)
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 ...
- 2009-04-07 20:44
- 浏览 1939
- 评论(0)