1234567891011121314151617181920212223242526272829303132333435 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
- <%@ taglib prefix="s" uri="http://www.connsec.com/tags" %>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <script type="text/javascript">
- <!--
- $(function(){
- $("#generateSecret").on("click",function(){
- $.post("<s:Base/>/apps/generate/secret/oauth20", {_method:"post",currTime:(new Date()).getTime()}, function(data) {
- $("#secret").val(data+"");
- $("#secret_text").html(data+"");
- });
- });
-
- });
- //-->
- </script>
- <form id="actionForm_app" method="post" type="label" autoclose="true"
- action="<s:Base/>/apps/basic/update"
- forward="<s:Base/>/apps/list"
- enctype="multipart/form-data">
- <!-- content -->
- <!--table-->
- <table class="datatable" >
- <tbody>
- <tr>
- <td ><jsp:include page="./appUpdateCommon.jsp"/></td>
- </tr>
- </tbody>
- </table>
- <input class="button" id="submitBtn" type="submit" value="<s:Locale code="button.text.save" />"/>
- <input class="button" id="backBtn" type="button" value="<s:Locale code="button.text.cancel" />"/>
- </form>
|