what is “微帮助上”?try
<a href="http://www.csdn.net" onmouseover="this.title=this.innerText;">CSDN</a>

解决方案 »

  1.   

    <body onmouseover=with(event.srcElement)if(tagName=="A")alert(innerText)>
    <a href="http://www.csdn.net">CSDN</a>
    <a href="http://www.blueidea.com">Blue</a>
      

  2.   

    就是当“手指”指在datagrid子控件的模板列的超级链接上时(没有按下),
    用javascript,在“手指”的旁边显示1个飘动的文本框,里面显示“手指”
    所指的datagrid子控件的模板列的超级链接上的内容!!!!!
      

  3.   

    use some code similar to mine or show some of your datagrid html code so we know what you are talking about
      

  4.   

    saucer(思归) is right 
    you try it.
      

  5.   

    <a href="http://www.csdn.net" onmouseover="this.title=this;">CSDN</a>
      

  6.   

    what do you want to display? if you display the link, try
    <a href="http://www.csdn.net" onmouseover="this.title=this.href;">CSDN</a>if you want to display the content between <a> .. </a>, try
    <a href="http://www.csdn.net" onmouseover="this.title=this.innerText;">CSDN</a>if you want to display fancy html code, use popup
      

  7.   

    比如:
    <IMG ID=PrevYear SRC="prevYear.gif" ALT="上一年">
    当你将鼠标移动到上面的时候就能出现"上一年".
      

  8.   

    稍微加工生成新的控件,加入hint功能就可以了
      

  9.   

    给你一个替代的办法
    使用模版列不使用HyperLinkColumn <asp:TemplateColumn>
    <ItemTemplate>
    <a  onmouseover = "javascript:this.title=this.href;" href='../treeview/treeviewtest.aspx?id=<%# DataBinder.Eval(Container, "DataItem.ID")>'>gdsgs </a>
    </ItemTemplate>
    </asp:TemplateColumn>
      

  10.   

    private void dg_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
    {
    if(e.Item.ItemType == ListItemType.Item  )
    e.Item.Cells[0].Attributes["onMouseOver"]="this.title=this.all.item(0).href";
    //
    }
      

  11.   

    其实我以前说的
    使用模版列不使用HyperLinkColumn
    也是可以的