在邮件中捕获时,下拉列表中的值在jsp中返回空值

时间:2019-01-09 06:13:01

标签: jsp

我正在尝试捕获以下代码中引用的下拉列表中选择的国家/地区

</td>
    <td width="20%"  align="left" nowrap >
            <font size="2"><b><label >Country</label></b></font>
    </td>

    <td width="30%"  align="left"  >
        <select id="cn_pk" name="cn_pk" onchange="submitformCnt(this.value)" style="width: 140px;">
         <option value="0" default>Select Country</option>

          <%

            if(rs_ctr!=null)
            {
          while(rs_ctr.next())
            { 

             if (st_cn_pk!=null && rs_ctr.getString("CN_PK").equals(st_cn_pk))
             {

然后我使用getstatement选项进行阅读

String cn_pk = request.getParameter("cn_pk");

然后我尝试在邮件中打印以下输出:

htmlText= htmlText+ "<strong> <label>Name of Customer / Partner <font color=\"blue\" family=\"sans-serif\" size=\"24px\">(고객명 / 협력사) : </label>"+"<font color=\"blue\"><label>"+ custname+" ("+custid+")"+ cn_pk + "</font></label>" +"</stong>";

我将国家设为"null"

我要去哪里错了?

0 个答案:

没有答案