当前位置: 代码迷 >> ASP.NET >> c#怎么在后台写类似前台<a href target>
  详细解决方案

c#怎么在后台写类似前台<a href target>

热度:2793   发布时间:2013-02-25 00:00:00.0
c#怎样在后台写类似前台<a href target>?
我想在后台写一个在某个框架中打开页面,类似前台可以这样写:
<a href="menu/test.aspx" class="link1" target="leftmenu">Test</a>

我怎么在后台写一个这样功能?
或者怎样调用这个也可以

------解决方案--------------------------------------------------------
拼写一个字符串啊 然后输出到前台。

string S = "你的内容"
------解决方案--------------------------------------------------------
注册一个脚本到前端呀,比如 window.open("xxx.aspx")
------解决方案--------------------------------------------------------
你就在后台写上了个公开的public string="你的内容"; 你在在前台输出就可以了
------解决方案--------------------------------------------------------
HTML code
<head runat="server">    <title></title></head><frameset cols="120,*"><frame name="left" src="left.aspx"><frame name="main" src="main.aspx"></frameset></html>
------解决方案--------------------------------------------------------
探讨

public partial class main : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (Request.QueryString["Login_ID"] != null)
{
//就是想在这里写,……
  相关解决方案