Advertisement
Guest User

Entvex

a guest
Jan 28th, 2010
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.32 KB | None | 0 0
  1. <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="GroupView.aspx.cs" Inherits="GroupView" Title="GroupView" %>
  2.  
  3. <%@ Register src="~/GroupListControl.ascx" tagname="GroupListControl" tagprefix="uc1" %>
  4.  
  5. <%@ Register src="~/GroupListControlNew.ascx" tagname="GroupListControlNew" tagprefix="uc1" %>
  6.  
  7. <%@ Register src="~/GroupListControlEditor.ascx" tagname="GroupListControlEditor" tagprefix="uc1" %>
  8.  
  9. <%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="cc1" %>
  10.  
  11.  
  12.  
  13. <asp:Content ID="Content1" ContentPlaceHolderID="LeftSide" Runat="Server">
  14.  
  15. </asp:Content>
  16. <asp:Content ID="Content2" ContentPlaceHolderID="cphMainContent" Runat="Server">
  17.  
  18.     <asp:Panel id="PanelGroupControls" runat="server" Height="65px" >
  19.  
  20. <table width="100%">
  21. <tr>
  22. <td>
  23. <asp:Button ID="btnNewGroup" Width="65px" runat="server" Text="New"
  24.        onclick="btnNewGroup_Click" />
  25.         </td>
  26. </tr>
  27.  
  28. <tr>
  29. <td>
  30. <asp:Button ID="btnRemove" runat="server" Text="Remove" Width="65px"
  31.        onclick="btnRemove_Click" />
  32.         <cc1:ConfirmButtonExtender ID="btnRemove_ConfirmButtonExtender"
  33.        runat="server" ConfirmText="Are you sure ?" Enabled="True" TargetControlID="btnRemove">
  34.     </cc1:ConfirmButtonExtender>
  35.     <%--Are you sure?. All the slected groups will be removed--%>
  36.         </td>
  37. </tr>
  38.  
  39. <tr>
  40. <td>
  41.  
  42. <asp:Button ID="btnEdit" Width="65px" runat="server" Text="Edit"
  43.        onclick="btnEdit_Click" />
  44.     <cc1:ConfirmButtonExtender ID="btnEdit_ConfirmButtonExtender" runat="server"
  45.        ConfirmText="Do you Want to edit the Selected control(select only one)" Enabled="True" TargetControlID="btnEdit">
  46.     </cc1:ConfirmButtonExtender>
  47. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  48.     <asp:DropDownList ID="ddlProject" runat="server" AutoPostBack="True"
  49.        onselectedindexchanged="DropDownList1_SelectedIndexChanged"
  50.        ontextchanged="ddlProject_TextChanged">
  51.     </asp:DropDownList>
  52.     Project &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  53. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  54. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Alias<asp:DropDownList
  55.        ID="ddlNickName" runat="server">
  56.     </asp:DropDownList>
  57. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  58. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  59. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Members
  60. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  61. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Subscribe
  62.  
  63. <asp:Panel id="PanelGroupList" runat="server" Width="100%" >
  64.  
  65. <asp:ScriptManager ID="ScriptManager1" runat="server">
  66. </asp:ScriptManager>
  67.  
  68. </asp:Panel>
  69.  
  70.     <asp:Panel ID="PanelAddNewGroup" runat="server" Visible="false">
  71.    
  72.     </asp:Panel>
  73.    
  74.     <asp:Panel ID="PanelEdit" runat="server" Visible="false">
  75.    
  76.     </asp:Panel>
  77.  
  78. </td>
  79.  
  80. </tr>
  81. </table>
  82.  
  83. </asp:Panel>
  84. </asp:Content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement