从另一个页面到达控制。 ASP.NET
Posted
技术标签:
【中文标题】从另一个页面到达控制。 ASP.NET【英文标题】:Reach control from another page. ASP.Net 【发布时间】:2016-04-30 18:04:59 【问题描述】:嗯,情况就是这样……
我在 Page1.aspx 中有一个元素 (<h2 id="test"></h2>
),我想从 Page2.aspx(用户的管理区域...)中更改它,有点...
test.InnerText = "testText";
如何从第二页访问此控件?这可能吗?
像往常一样,谢谢你们......
【问题讨论】:
嗯...我可以将 testText 存储在数据库中(并在 Page2 中对其进行修改),然后在 Page1 中恢复它。但是,有更好的主意吗? 【参考方案1】:您需要获取表单的一个实例。请参阅下面我的两个表单项目 表格一
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
public partial class Form1 : Form
Form2 form2;
public Form1()
InitializeComponent();
form2 = new Form2(this);
private void button1_Click(object sender, EventArgs e)
form2.Show();
string results = form2.GetData();
表格 2
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
public partial class Form2 : Form
Form1 form1;
public Form2(Form1 nform1)
InitializeComponent();
this.FormClosing += new FormClosingEventHandler(Form2_FormClosing);
form1 = nform1;
form1.Hide();
private void Form2_FormClosing(object sender, FormClosingEventArgs e)
//stops form from closing
e.Cancel = true;
this.Hide();
public string GetData()
return "The quick brown fox jumped over the lazy dog.";
【讨论】:
以上是关于从另一个页面到达控制。 ASP.NET的主要内容,如果未能解决你的问题,请参考以下文章
如何从另一个 QML 访问和控制 ListModel 的内容
如何从另一个视图控制器将值插入 UITableViewCell
ASP.NET MVC:部分知道它是否从另一个页面带来请求?