asp.net中怎样实现设为首页和加入收藏的功能我用的是用LinkButton控件 点击Text为设为首页的LinkButton实现

用javascript来实现,写在控件的onclick中
网上查的javascript例子(onclick中是具体的实现)<table align="center">
<tr>
<td onclick="window.location.href;this.style.behavior='url(#default#homepage)';
this.setHomePage('http://localhost:3219/eweb/');" style="CURSOR:Hand">
<font color=black>设为首页  </font></td>
<td onclick="window.external.AddFavorite(location.href,document.title);"
style="CURSOR:Hand"><font color=black>加入收藏</font></td>
</tr>
</table>

你可能感兴趣的:(asp.net)