的步骤如下:
var inputValue = document.getElementById("textboxId").value;
这里假设文本框的id为"textboxId",将获取到的值存储在变量inputValue中。
var xhr = new XMLHttpRequest();
xhr.open("POST", "/saveValue", true);
xhr.setRequestHeader("Content-Type", "application/json");
xhr.send(JSON.stringify({ value: inputValue }));
这里假设后端的保存接口为"/saveValue",将值通过POST请求发送给后端。
using System;
using System.IO;
using System.Web;
using System.Web.Mvc;
public class HomeController : Controller
{
[HttpPost]
public ActionResult SaveValue(string value)
{
// 在这里进行存储操作,例如将值存储到数据库中
// 示例代码仅作为演示,实际存储方式根据需求而定
SaveToDatabase(value);
return Json(new { success = true });
}
private void SaveToDatabase(string value)
{
// 将值存储到数据库中的逻辑
}
}
这里假设使用ASP.Net MVC框架,通过HttpPost特性将SaveValue方法标记为接收POST请求。在SaveValue方法中,可以将获取到的值进行存储操作,这里示例代码中调用了SaveToDatabase方法来演示存储到数据库的逻辑。
通过以上步骤,你可以获取Javascript生成的文本输入值,并使用.Net C#进行存储。请注意,以上代码仅作为示例,实际情况中可能需要根据具体需求进行适当的修改和优化。
领取专属 10元无门槛券
手把手带您无忧上云