如何在c#中将多个文本框值存储到一个应用程序变量中

时间:2017-02-17 09:50:07

标签: c# jquery json html5 bootstrapping

[code page="c#"] Hdnano.Value = Application["AccountNum"].ToString();

&# 13;

$(document).ready(function() {
      $("#ano").on("blur", function() {
        var accountNum = $('textarea#ano').val();
        $("#Hdnano").val(folioNum);
      });






<html>

<body>
  <form>
    <div class="container">
      <div class="row">
        <div class="col-xs-3 col-lg-2">
          SELECT bank name
        </div>
        <div class="col-xs-3 col-lg-3">
          <input id="Text1" type="text" class="form-control" />
        </div>
      </div>
      <div class="row">
        <div class="col-xs-3 col-lg-2">
          father name
        </div>
        <div class="col-xs-3 col-lg-3">
          <input id="Text1" type="text" class="form-control" />
        </div>
        <div class="col-xs-3 col-lg-2">
          father mobile no
        </div>

        <div class="col-xs-3 col-lg-3">
          <input id="Text1" type="text" class="form-control" />
        </div>
      </div>
      <div class="row">
        <div class="col-xs-3 col-lg-2">
          mother name
        </div>
        <div class="col-xs-3 col-lg-3">
          <input id="Text1" type="text" class="form-control" />
        </div>
        <div class="col-xs-3 col-lg-2">
          mother mobile no
        </div>
        <div class="col-xs-3 col-lg-3">
          <input id="Text1" type="text" class="form-control" />
        </div>
      </div>
      <div class="row">

        <div class="col-xs-3 col-lg-2">
          Account numbers
        </div>


        <div class="col-xs-3 col-md-6 col-lg-6">
          <textarea class="form-control" rows="5" id="fno"></textarea>
        </div>
      </div>
    </div>
  </form>
</body>

</html>
&#13;
&#13;
&#13;

如何将多个文本框值存储到一个应用程序变量中? 这里的客户详细信息是选择银行名称,父亲/母亲姓名和手机号码到一个应用程序变量,以及在文本区域中的多个帐号到第二个应用程序变量?我想将客户的值存储到应用程序变量中而不是想要将此值传递到其他页面,这也是这个html页面的类似类型。我如何在这里使用json字符串

1 个答案:

答案 0 :(得分:0)

您可以为数组元素命名变量。看看这个:

<form action="" method="POST">
    <input type="text" name="name1[first]">
    <input type="text" name="name1[second]">
    <input type="text" name="name1[third]">

    <input type="text" name="name2[0]">
    <input type="text" name="name2[1]">
    <input type="submit">
</form>