我需要表单 1 中的文本框值作为 asp 中 html 级别的字符串插入到 form2 中
本文关键字:html asp 插入 字符串 form2 表单 文本 | 更新日期: 2023-09-27 18:31:03
我想将文本框值"传输"为html代码。例如,文本框值是一个网站,类似于form1.aspx中的 http://www.google.com。我希望将值放入 form2 中的 HTML 代码中.aspx .我可以问我应该怎么做吗?
<span class="logoposition">
<a href="http://www.google.com"><img src="Logo.jpg" height= "120"; width="280"; /></a>
</span>
就像我希望文本框1值替换当前 www.google.com 一样
以下是
执行此操作的方法:
Webform1 标记:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="SOTest1.WebForm1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="Your text: ">
</asp:Label><asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="GO" OnClick="Button1_Click" />
</div>
</form>
</body>
</html>
网络表单 1 代码:
using System;
namespace SOTest1
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Button1_Click(object sender, EventArgs e)
{
string myString = Server.HtmlEncode(TextBox1.Text);
Response.Redirect("Webform2.aspx?mystring=" + myString);
}
}
}
Webform2 标记:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="SOTest1.WebForm2" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<span class="logoposition">
<a href="http://www.google.com" runat="server" id="myAnchor"><img src="Logo.jpg" height= "120"; width="280"; /></a>
</span>
</div>
</form>
</body>
</html>
网络表单2代码:
using System;
namespace SOTest1
{
public partial class WebForm2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string mystring = Request.QueryString["mystring"];
myAnchor.HRef = mystring;
myAnchor.InnerText = mystring;
}
}
}