2017-08-29 29 views

答えて

0

からクエリを提出削除私はあなたがのImageButtonを追加するには、このような何かをやっていると仮定します。

 ImageButton imageButton = new ImageButton(); 
     FileInfo fileInfo = new FileInfo(strFileName); 
     imageButton.ImageUrl = "~/img/abc.png"; 
     imageButton.Width = Unit.Pixel(100); 
     imageButton.Height = Unit.Pixel(100); 

私はあなたがこのような空の文字列""value属性を設定することをお勧め:

imageButton.Attributes["value"]=""; 

OR

imageButton.Attributes.Add("value", ""); 

はまた、このstackoverflow post

を参照してください。この情報がお役に立てば幸い!

+0

ありがとうございます!それは私のための仕事です.. –

関連する問題