什么叫imagebutton?真汗。读看点英文,imagebutton就是一张图片,你在图片上写好字,

解决方案 »

  1.   

    imageButton.Text="你要添加的文字";
      

  2.   

    imageButton有Text属性吗??
    好象没有!!
      

  3.   

    System.Web.UI.LiteralControl lo = new LiteralControl( "Text" );
    this.ImageButton1.Controls.Add( lo );
      

  4.   

    imagebutton 图片不存在的时候 AlternateText 属性设置要显示的文字Text获取或设置 ImageButton 控件的 AlternateText 属性的值。 
      

  5.   


    System.Web.UI.LiteralControl lo = new LiteralControl( "Text" ); 
    this.ImageButton1.Controls.Add(lo);
    或者可以用DIV 来实现
      

  6.   

    AlternateText是一个提示文本哦只有鼠标在上面的时候才会显示的哦
    最好的选择是自己做一个img拉  把自己想写的加到图片上面
    其他的方法都不是很好