English 中文(简体)
保存并提醒 asp. net 格式化字段值 - 有没有更好的方法?
原标题:Saving and recalling asp.net form field values - is there a better way?
  • 时间:2012-05-25 18:27:57
  •  标签:
  • asp.net

ASP.Net表格、SQL、C#

我有一个应用程序需要保存文本框、复选框、收音机按钮等状态,

我目前的解决方案是通过所有输入字段进行循环,并将字段 ID 和字段值存储到 XML 字符串中,然后将其推到 nvarchar 或 SQL 表格中的文本字段中。 我这样做的原因是,随着时间的推移,窗体上可以有不同的字段,因此我无法直接跳转到表格中已知的一组字段中。

未来用户可以回忆“状态记录”和所有仍然存在的字段都重新聚集,任何新字段都留空。

这工作很好,但我想知道 有没有人以不同的方式 或更好的方式完成这个任务?

这个项目的想法是,我的用户在一个页面上做了一些选择, 以创建“询问”, 我想有一个功能, 他们可以回忆一个先前保存的“询问” 。

最佳回答

Asp. net 维持着查看状态中的控制状态。 这个视图状态是您需要保存全部数据的全部。 是的, 它保存的远远不止值 。

视图状态保存在 asp. net 中的隐藏变量中 。

如果您将此值写入数据库, 并强制在页面负载上加载 ViewState, 您将会恢复所有值 。

负载 ViewState 函数由 Asp. Net 在后回调中调用, 所以在这种情况下, 您必须自己调用它 。

问题回答

它在客户端容易得多,例如 JQuery, 您可以在控件的数据属性中保存初始值, 并重新填充所有您 r 控件。 另一种方法是使隐藏字段, 并用特殊字符分隔初始值, 然后在每次调用时( 例如前一个数值按钮点击事件 ) 从隐藏的字段中读取, 并拆分您的值并更新控件 。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签