黄色网页视频 I 影音先锋日日狠狠久久 I 秋霞午夜毛片 I 秋霞一二三区 I 国产成人片无码视频 I 国产 精品 自在自线 I av免费观看网站 I 日本精品久久久久中文字幕5 I 91看视频 I 看全色黄大色黄女片18 I 精品不卡一区 I 亚洲最新精品 I 欧美 激情 在线 I 人妻少妇精品久久 I 国产99视频精品免费专区 I 欧美影院 I 欧美精品在欧美一区二区少妇 I av大片网站 I 国产精品黄色片 I 888久久 I 狠狠干最新 I 看看黄色一级片 I 黄色精品久久 I 三级av在线 I 69色综合 I 国产日韩欧美91 I 亚洲精品偷拍 I 激情小说亚洲图片 I 久久国产视频精品 I 国产综合精品一区二区三区 I 色婷婷国产 I 最新成人av在线 I 国产私拍精品 I 日韩成人影音 I 日日夜夜天天综合

Ajax實現(xiàn)DataGrid/DataList動態(tài)ToolTip

系統(tǒng) 2221 0

Ajax實現(xiàn)DataGrid/DataList動態(tài)ToolTip
1.建立一aspx頁面,html代碼 2.cs代碼

using System.Data.SqlClient;
using System.IO;

protected void Page_Load( object sender,EventArgse)
{
if ( ! Page.IsPostBack)
{
BindData();

}

if (ID != "" )
{
GetDescriptionByID(ID);
}


}


property #region property
private string ID
{
get
{
if (Request[ " ID " ] != null && Request[ " ID " ].ToString() != "" )
{
return Request[ " ID " ];
}

else
{
return "" ;
}

}

}

#endregion


GetDescriptionByID #region GetDescriptionByID
private void GetDescriptionByID( string ID)
{
string connStr = ConfigurationSettings.AppSettings[ " ConnectionString " ];
SqlConnectionconn
= new SqlConnection(connStr);
string sql = " select*fromtestimagewhereuserid=' " + ID + " ' " ;
SqlCommandcmd
= new SqlCommand(sql,conn);
conn.Open();
SqlDataReaderdr
= cmd.ExecuteReader();

string s = @" <tablecellspacing='0'cellpadding='4'width='300'height='200'border='0'id='GridView1'style='color:#333333;border-collapse:collapse;'> " ;
if (dr.Read())
{
s
+= " <trstyle='color:#333333;background-color:#FFFBD6;'> " ;
s
+= " <tdwidth='50'>名稱:</td> " ;
s
+= " <td> " + dr[ " UserName " ] + " </td> " ;
s
+= " </tr> " ;
s
+= " <trstyle='color:#333333;background-color:White;'> " ;
s
+= " <tdscope='col'>描述:</td> " ;
s
+= " <td> " + dr[ " Description " ] + " </td> " ;
s
+= " </tr> " ;
}

s
+= " </table> " ;
dr.Close();
conn.Close();
this .Response.Write(s);
this .Response.End();
}

#endregion


saveimage #region saveimage
protected void Button2_Click( object sender,EventArgse)
{
StreamImageStream;
string Path = FileUpload1.PostedFile.FileName; // 文件名稱
int Size = FileUpload1.PostedFile.ContentLength; // 文件大小
string Type = FileUpload1.PostedFile.ContentType; // 文件類型
ImageStream = FileUpload1.PostedFile.InputStream;
byte []Content = new byte [Size];
int Status = ImageStream.Read(Content, 0 ,Size);

SqlConnectionconn
= new SqlConnection(ConfigurationSettings.AppSettings[ " ConnectionString " ]);
SqlCommandcomm
= new SqlCommand( " insertintotestimage(UserName,Image,Path,Type,Description)values(@UserName,@Image,@Path,@Type,@Description) " ,conn);

comm.CommandType
= CommandType.Text;
comm.Parameters.Add(
" @UserName " ,SqlDbType.VarChar, 255 ).Value = txtUserName.Text;
comm.Parameters.Add(
" @Image " ,SqlDbType.Image).Value = Content;
comm.Parameters.Add(
" @Path " ,SqlDbType.VarChar, 255 ).Value = Path;
comm.Parameters.Add(
" @Type " ,SqlDbType.VarChar, 255 ).Value = Type;
comm.Parameters.Add(
" @Description " ,SqlDbType.VarChar, 2000 ).Value = this .TextBox1.Text;

conn.Open();
comm.ExecuteNonQuery();
conn.Close();
}

#endregion


BindData #region BindData
private void BindData()
{
string sql = " select*fromtestimage " ;
DataSetds
= GetDataSet(sql);
this .DataList1.DataSource = ds;
this .DataList1.DataBind();
}

#endregion


GetDataSet #region GetDataSet
private DataSetGetDataSet( string sql)
{
string constring = System.Configuration.ConfigurationSettings.AppSettings[ " ConnectionString " ];
SqlDataAdaptersda
= new SqlDataAdapter(sql,constring);
DataSetds
= new DataSet();
sda.Fill(ds);
return ds;
}

#endregion
3.數(shù)據(jù)庫腳本
if exists ( select * from dbo.sysobjects where id = object_id (N ' [dbo].[TestImage] ' ) and OBJECTPROPERTY (id,N ' IsUserTable ' ) = 1 )
drop table [ dbo ] . [ TestImage ]
GO

CREATE TABLE [ dbo ] . [ TestImage ] (
[ UserID ] [ int ] IDENTITY ( 1 , 1 ) NOT NULL ,
[ UserName ] [ nvarchar ] ( 500 )COLLATEChinese_PRC_CI_AS NULL ,
[ Image ] [ image ] NULL ,
[ Path ] [ nvarchar ] ( 500 )COLLATEChinese_PRC_CI_AS NULL ,
[ Type ] [ nvarchar ] ( 20 )COLLATESQL_Latin1_General_CP1_CI_AS NULL ,
[ Description ] [ nvarchar ] ( 2000 )COLLATEChinese_PRC_CI_AS NULL
)
ON [ PRIMARY ] TEXTIMAGE_ON [ PRIMARY ]
GO
< html >
< head >
< title > WebForm1 </ title >
< style type ="text/css" > .logo { } { POSITION : absolute } .dek { } { Z-INDEX : 200 ; VISIBILITY : hidden ; POSITION : absolute } </ style >
</ head >
< body >
< Form runat ="server" >
< DIV class ="dek" id ="dek" ></ DIV >
< script language ="javascript" >
Xoffset
=- 20 ;
Yoffset
= 20 ;
var nav,yyy =- 1000 ;
var skn = dek.style;
document.onmousemove
= get_mouse;

// ajax
var xmlHttp;
function createXMLHttpRequest()
{
if (window.ActiveXObject)
{
xmlHttp
= new ActiveXObject( " Microsoft.XMLHTTP " );
}

else if (window.XMLHttpRequest)
{
xmlHttp
= new XMLHttpRequest();
}

}


function startRequest(id)
{
createXMLHttpRequest();
xmlHttp.onreadystatechange
= handleStateChange;
xmlHttp.open(
" GET " , " ?ID= " + id, true );
xmlHttp.send(
null );
}

var content;
function handleStateChange()
{
if (xmlHttp.readyState == 4 )
{
if (xmlHttp.status == 200 )
{
content
color: #000000; backgroun
分享到:
評論

Ajax實現(xiàn)DataGrid/DataList動態(tài)ToolTip


更多文章、技術交流、商務合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦?。?!

發(fā)表我的評論
最新評論 總共0條評論