| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <%@ include file="../common/header.jsp" %>
- <script type="text/javascript" language="javascript">
- <!--
- function doCreateappSetting(){
- var x = window.confirm("<bean:message key="confirm.create"/>")
- if (x) {
- document.forms.appSetting.action.value="create_ok";
- document.forms.appSetting.post.value = "true";
- document.forms.appSetting.submit();
- doDisable(document.forms.appSetting, "button");
- }
- }
- function doBack(){
- document.forms.appSetting.action.value="list";
- document.forms.appSetting.clear.value="true";
- document.forms.appSetting.submit();
- }
- -->
- </script>
-
- <!-- CONTENT -->
- <form name="appSetting" method="post" action="appSetting.do">
- <input type="hidden" name="action"/>
- <input type="hidden" name="clear"/>
- <input type="hidden" name="sequence"/>
- <input type="hidden" name="post"/>
- <input type="hidden" name="redirect" value="create"/>
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <td class="titleHeader" align="left"><bean:message key="project.AppSetting.key"/> CREATE</td>
- </table>
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <tr>
- <td align="center">
- <table width="100%" border="0" cellspacing="1" cellpadding="2">
- <tr>
- <td colspan="6"><html:errors/></td>
- </tr>
- <tr>
- <td width="15%"><b><bean:message key="appSetting.code.key"/><font color="#FF0000">*</font></b></td>
- <td width="1%">:</td>
- <td width="34%">
- <html:text name="appSetting" property="code"/>
- </td>
- <td width="5%"> </td>
- <td width="15%"> </td>
- <td width="1%"> </td>
- <td width="30%"> </td>
- </tr>
- <tr>
- <td width="15%"><b><bean:message key="appSetting.name.key"/><font color="#FF0000">*</font></b></td>
- <td width="1%">:</td>
- <td width="34%">
- <html:text name="appSetting" property="name"/>
- </td>
- <td width="5%"> </td>
- <td width="15%"> </td>
- <td width="1%"> </td>
- <td width="30%"> </td>
- </tr>
- <tr>
- <td valign="top"><b><bean:message key="appSetting.description.key" /></b></td>
- <td valign="top">:</td>
- <td colspan=4 valign="top">
- <html:text name="appSetting" property="description"/>
- </td>
- </tr>
- <tr>
- <td valign="top"><b><bean:message key="appSetting.settingValue.key" /></b></td>
- <td valign="top">:</td>
- <td colspan=4 valign="top">
- <html:text name="appSetting" property="settingValue"/>
- </td>
- </tr>
- <tr>
- <td width="15%"></td>
- <td width="10"></td>
- <td width="30%"><input type="button" value="<bean:message key="button.back"/>" onclick="javascript:doBack();"/>
- <input type="button" value="<bean:message key="button.submit"/>" onclick="javascript:doCreateappSetting();"/></td>
- <td colspan="4"> </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td> </td>
- </tr>
- </table>
- </td>
- </form>
- <!-- END CONTENT -->
- <%@ include file="../common/footer.jsp"%>
-
|