2

基本上我有两个文件: details.html details.cs

我想details.cs用来写入值,details.html但 html 文本框仍然保持不变。

详细信息.html

<%@ Page Language="C#" 
AutoEventWireup="true" 
CodeBehind="details.cs" 
Inherits="Details.DetailsHTML" %>

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
</head>
<body>
<form>
<input id="txt_details" type="text" name="txt_details" runat="server"/>
</form>
</body>
</html>

详细信息.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.IO;
using System.Text;
using System.Data;

namespace Details
{
    public partial class DetailsHTML : Page
    {
        //Declare controls used
        protected System.Web.UI.HtmlControls.HtmlInputText txt_details;

        protected void Page_Load(object sender, EventArgs e)
        {
            string strValue = Page.Request.Form ["txt_details"].ToString();
            strValue = "test";
        }
     }

}
4

3 回答 3

1

无法从 .cs文件访问 .html 中的控制。您正在尝试使用aspx页面,因为您从Page类继承但命名为 .html,您可能没有使用 Visual Studio。使用 details.aspx 和 details.aspx.cs。如果您没有 Visual Studio,那么您可以从这里下载免费的快速版本。此链接说明了如何使用 Visual Studio 创建 Web 应用程序项目。文章在 Visual Studio使用代码分离创建基本网页将帮助您创建网页并访问服务器端的 html 控件。

txt_details.Value = "your value";
于 2013-07-19T04:11:30.610 回答
0
txt_details.Value = "test";

这应该有帮助

于 2013-07-19T04:09:15.720 回答
0

您可以通过控制名称访问,例如:

txt_details.Value = "Test"
于 2013-07-19T04:09:43.320 回答