Sunday, February 27, 2011

On Mouse Over show image

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');"

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"))

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/

Wednesday, February 16, 2011