2014-12-13 4 views

답변

0

입니다. 당신은 jquery 나 코드 뒤에서 할 수 있습니다. 마스터 페이지에 코드를 넣을 수 있습니다 JQuery와에

Dim i As Image = Master.FindControl("Image1") 

     i.Visible =False 

을하고 document.url 확인 : vb.net에서 당신은의 default.aspx onload 이벤트에 넣고 수

$(document).ready(function() { 

    if (document.URL.indexOf('default.aspx') > 0) { 
     document.getElementById("Image1").style.display = 'none'; 
} 

});