123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>webserviceindex</title>
- <script type="text/javascript">
- $(function() {
- loadWebserviceLeft();
- loadWebserviceRight();
- });
-
- function loadWebserviceLeft() {
- huimv.loadPage("webserviceLeft", "webserviceLeft.htm");
- }
-
- function loadWebserviceRight() {
- huimv.loadPage("webserviceRight", "loadWebservicexyxxList.htm");
- }
- </script>
- </head>
- <body>
- <table width="100%" cellspacing="0" cellpadding="0">
- <tr>
- <td width="190" class="left_rightline" valign="top" bgcolor="#f7f7f7" height="445px;">
- <div id="webserviceLeft"></div>
- </td>
- <td valign="top">
- <div id="webserviceRight"></div>
- </td>
- </tr>
- </table>
- </body>
- </html>
|