⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 admin_addinterface.aspx

📁 具有的功能适合于网站的运营和管理
💻 ASPX
📖 第 1 页 / 共 2 页
字号:
                           <tr>
                               <td>后台登录帐号 :</td>
                               <td><asp:TextBox ID="AdminLoginUrl" runat="server" Text='<%# Bind("AdminLoginUrl") %>' Width="70%" CssClass="text_area" />&nbsp;<a href="#"  onmouseover="showHelp('help2');" onmouseout="hidenHelp('help2');" ><img src="../IMS_Img/smallIcon/tooltip.png" border="0" /></a></td>
                          </tr>
                           <tr>
                               <td>后台登录密码 :</td>
                               <td><asp:TextBox ID="AdminLoginPass" runat="server" Text='<%# Bind("AdminLoginPassword") %>' Width="70%" CssClass="text_area" /></td>
                          </tr>
                          <tr>
                               <td>该系统会员中心路径 :</td>
                               <td><asp:TextBox ID="UserCenterUrl" runat="server" Text='<%# Bind("UserCenterUrl") %>' Width="70%" CssClass="text_area" />&nbsp;<a href="#"  onmouseover="showHelp('help1');" onmouseout="hidenHelp('help1');" ><img src="../IMS_Img/smallIcon/tooltip.png" border="0" /></a></td>
                          
                          </tr> 
                          <tr>
                               <td>系统字符编码 :</td>
                               <td>
                               <asp:DropDownList runat="server" ID="Codepage" SelectedValue='<%# Bind("CodePage") %>'>
                                 <asp:ListItem Selected="True" Text="gb2312" Value="gb2312">
                                 </asp:ListItem>
                                 <asp:ListItem Text="utf-8" Value="utf-8">
                                 </asp:ListItem>
                               </asp:DropDownList>
                               </td>
                          </tr>   
                          <tr>
                              <td>后台打开方式</td>
                              <td><asp:RadioButtonList ID="AdminLoginOpenType" runat="server" RepeatDirection="Horizontal" RepeatLayout="Flow" SelectedValue='<%# Bind("AdminLoginOpenType") %>'>
                                       <asp:ListItem Text="新窗口" Value="0" />
                                       <asp:ListItem Text="原窗口" Value="1" Selected="True"/>
                                    </asp:RadioButtonList></td>
                          </tr>    
                           <tr>
                               <td>开启前台整合:</td>
                               <td><asp:RadioButtonList ID="EnableFrontInterfaceRadio" runat="server" 
                                     SelectedValue='<%# Bind("EnableFrontInterface") %>' RepeatDirection="Horizontal" RepeatLayout="Flow">
                                       <asp:ListItem Value="0">否</asp:ListItem>
                                       <asp:ListItem Value="1">是</asp:ListItem>
                                   </asp:RadioButtonList>
                               </td>
                          </tr>
                          <tr>
                               <td>开启后台整合:</td>
                               <td><asp:RadioButtonList ID="EnableAdminInterfaceRadio" runat="server" 
                                     SelectedValue='<%# Bind("EnableAdminInterface") %>' RepeatDirection="Horizontal" RepeatLayout="Flow">
                                       <asp:ListItem Value="0">否</asp:ListItem>
                                       <asp:ListItem Value="1">是</asp:ListItem>
                                   </asp:RadioButtonList>                               
                              </td>
                          </tr>
                          <tr>
                               <td>关闭同步注册:</td>
                               <td><asp:RadioButtonList ID="RegCloseRadio" runat="server" 
                                     SelectedValue='<%# Bind("RegClose") %>' RepeatDirection="Horizontal" RepeatLayout="Flow">
                                       <asp:ListItem Value="0">否</asp:ListItem>
                                       <asp:ListItem Value="1">是</asp:ListItem>
                                   </asp:RadioButtonList>                                
                               </td>
                          </tr>
                          <tr>
                               <td>关闭同步登录:</td>
                               <td><asp:RadioButtonList ID="LoginCloseRadio" runat="server" 
                                     SelectedValue='<%# Bind("LoginClose") %>' RepeatDirection="Horizontal" RepeatLayout="Flow">
                                       <asp:ListItem Value="0">否</asp:ListItem>
                                       <asp:ListItem Value="1">是</asp:ListItem>
                                   </asp:RadioButtonList>                                
                               </td>
                          </tr>
                           <tr>
                               <td> 是否为跨域名接口:</td>
                               <td><asp:RadioButtonList ID="CrossDomain" runat="server" 
                                     SelectedValue='<%# Bind("CrossDomain") %>' RepeatDirection="Horizontal" RepeatLayout="Flow">
                                       <asp:ListItem Value="0">否</asp:ListItem>
                                       <asp:ListItem Value="1">是</asp:ListItem>
                                   </asp:RadioButtonList>                                
                               </td>
                          </tr>
                          <tr>
                              <td colspan="2" align="center"> 
                                  <asp:Button ID="UpdateButton" runat="server" CausesValidation="True" CommandName="Update"
                                   Text="更新"/>                                  
                                  <input type="button" OnClick="javascript:{window.close();}" name="cannl" value="取消"/>                                   
                               </td>
                          </tr>
                      </EditItemTemplate>                      
                      <FooterTemplate>
                      </table>
                      </FooterTemplate>
                      <PagerSettings Mode="NumericFirstLast" />                     
                      <RowStyle Font-Size="Large" />
                      <PagerStyle Font-Size="Large" Font-Strikeout="False" HorizontalAlign="Center" VerticalAlign="Middle" />
                      
                  </asp:FormView> 
           
    <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" DeleteMethod="DelInterface"
        InsertMethod="AddInterface" SelectMethod="GetInterfaceByInterfaceID" TypeName="InterfaceBLL"
        UpdateMethod="UpdateInterface"  OnInit="ObjectDataSource1_Init1">
        <DeleteParameters>
            <asp:Parameter Name="InterfaceID" Type="Int32" />
        </DeleteParameters>
        <UpdateParameters>
            <asp:Parameter Name="InterfaceID" Type="Int32" />
            <asp:Parameter Name="EnableAdminInterface" Type="Int32" />
            <asp:Parameter Name="EnableFrontInterface" Type="Int32" />
            <asp:Parameter Name="AdminLoginOpenType" Type="Int32" />
            <asp:Parameter Name="AdminLoginPassword" Type="String" />
            <asp:Parameter Name="AdminLoginUrl" Type="String" />
            <asp:Parameter Name="InterfaceAdminUrl" Type="String" />
            <asp:Parameter Name="InterfaceFrontUrl" Type="String" />
            <asp:Parameter Name="InterfaceName" Type="String" />
            <asp:Parameter Name="InterfaceType" Type="Int32" />
            <asp:Parameter Name="LoginClose" Type="Int32" />
            <asp:Parameter Name="RegClose" Type="Int32" />
            <asp:Parameter Name="UpdateTime" Type="DateTime" />
            <asp:Parameter Name="Version" Type="String" />
            <asp:Parameter Name="CrossDomain" Type="Int32" />
            <asp:Parameter Name="UserCenterUrl" Type="String" />
            <asp:Parameter Name="CodePage" Type="String" />
        </UpdateParameters>
        <SelectParameters>
            <asp:QueryStringParameter Name="InterfaceID" QueryStringField="InterfaceID" Type="Int32" />
        </SelectParameters>
        <InsertParameters>
            <asp:Parameter Name="EnableAdminInterface" Type="Int32" />
            <asp:Parameter Name="EnableFrontInterface" Type="Int32" />
            <asp:Parameter Name="AdminLoginOpenType" Type="Int32" />
            <asp:Parameter Name="AdminLoginPassword" Type="String" />
            <asp:Parameter Name="AdminLoginUrl" Type="String" />
            <asp:Parameter Name="InterfaceAdminUrl" Type="String" />
            <asp:Parameter Name="InterfaceFrontUrl" Type="String" />
            <asp:Parameter Name="InterfaceName" Type="String" />
            <asp:Parameter Name="InterfaceType" Type="Int32" />
            <asp:Parameter Name="LoginClose" Type="Int32" />
            <asp:Parameter Name="RegClose" Type="Int32" />
            <asp:Parameter Name="UpdateTime" Type="DateTime" />
            <asp:Parameter Name="Version" Type="String" />
            <asp:Parameter Name="CrossDomain" Type="Int32" />
            <asp:Parameter Name="UserCenterUrl" Type="String" />
            <asp:Parameter Name="CodePage" Type="String" />
        </InsertParameters>
    </asp:ObjectDataSource>
</fieldset>
    </div>
    </form>
     <div id="help1" style="position:absolute;z-index:1; border:solid 1px black; padding:10px; background:white; display:none;" onmouseover="this.style.display='';" onmouseout="this.style.display='none'">
        添加会员地址用于在首页显示该系统的会员页面,不填则显示空白页面。 
     </div>
      <div id="help2" style="position:absolute;z-index:1; border:solid 1px black; padding:10px; background:white; display:none;" onmouseover="this.style.display='';" onmouseout="this.style.display='none'">
        填写该系统的超级管理员帐号和密码用于该系统的后台整合,IMS超级管理将使用此帐号登录该系统后台,不填则后台整合不起作用。
     </div>
     <div id="help3" style="position:absolute;z-index:1; border:solid 1px black; padding:10px; background:white; display:none;" onmouseover="this.style.display='';" onmouseout="this.style.display='none'">
        需要填写接口的完整URL路径,如http://域名/interface.asp 请不要填写相对路径
     </div>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -