function ShowHelp(id) {
document.getElementById(id).style.display = "block";
}
function HideHelp(id) {
document.getElementById(id).style.display = "none";
}
on .aspx page
onmouseover="javascript:ShowHelp('dvthumimage');" onmouseout="javascript:HideHelp('dvthumimage');"
Sunday, February 27, 2011
On Mouse over show different image in javascript
function Bind(cControl, imgsrc) {
// t2_ovr.jpg.jpg
cControl.childNodes[0].src = imgsrc;
}
function Clear(cControl, imgsrc) {
cControl.childNodes[0].src = imgsrc;
}
on .aspx page
onmouseover='javascript:Bind(this,"<%# GetAppImagePath(Eval("Thumbnail_Rollover")) %>");' onmouseout='javascript:Clear(this,"<%# GetAppImagePath(Eval("Thumbnail"))
// t2_ovr.jpg.jpg
cControl.childNodes[0].src = imgsrc;
}
function Clear(cControl, imgsrc) {
cControl.childNodes[0].src = imgsrc;
}
on .aspx page
onmouseover='javascript:Bind(this,"<%# GetAppImagePath(Eval("Thumbnail_Rollover")) %>");' onmouseout='javascript:Clear(this,"<%# GetAppImagePath(Eval("Thumbnail"))
Saturday, February 26, 2011
Asp dotnet 2 yr. exp Interview Questions
Please visit this link for 2 yr. exp. interview questions.
http://www.dotnetcurry.com/ShowArticle.aspx?ID=63
http://dotnetprojectninterviewquestions.blogspot.com/
http://www.dotnetcurry.com/ShowArticle.aspx?ID=63
http://dotnetprojectninterviewquestions.blogspot.com/
Wednesday, February 16, 2011
Insert from one database table to another similar table
insert into database1.dbo.Table1
select * from database2.dbo.Table1
select * from database2.dbo.Table1
Subscribe to:
Posts (Atom)