parent
6b930d93ab
commit
5a7654497d
@ -0,0 +1,43 @@
|
||||
<%@ Page Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Vereine_Manuell.aspx.cs" Inherits="QW2021C.Administration.Vereine_Manuell" %>
|
||||
<%@ Register Assembly="Syncfusion.EJ.Web, Version=18.3460.0.35, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" Namespace="Syncfusion.JavaScript.Web" TagPrefix="ej" %>
|
||||
<%@ Register Assembly="Syncfusion.EJ, Version=18.3460.0.35, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" Namespace="Syncfusion.JavaScript.Models" TagPrefix="ej" %>
|
||||
<%@ Register assembly="Syncfusion.EJ" namespace="Syncfusion.JavaScript.Models" tagprefix="ej" %>
|
||||
<asp:Content ID="MainContent" ContentPlaceHolderID="MainContent" runat="Server">
|
||||
<asp:Label runat="server"><h4>Anmeldung</h4></asp:Label>
|
||||
<ej:Grid ID="Verein" runat="server" CssClass="" DataSourceCachingMode="None" DataSourceID="SqlDataSource1" EnableLoadOnDemand="False" Locale="de-DE" MinWidth="0">
|
||||
<Columns>
|
||||
<ej:Column DataType="string" Field="account_code" IsPrimaryKey="True">
|
||||
</ej:Column>
|
||||
<ej:Column DataType="string" Field="account_name">
|
||||
</ej:Column>
|
||||
<ej:Column DataType="string" Field="account_short">
|
||||
</ej:Column>
|
||||
<ej:Column DataType="string" Field="account_type">
|
||||
</ej:Column>
|
||||
<ej:Column DataType="string" Field="lg">
|
||||
</ej:Column>
|
||||
</Columns>
|
||||
<EditSettings AllowAdding="true" AllowEditing="true" AllowDeleting="true" />
|
||||
<ToolbarSettings ShowToolbar="true" ToolbarItems="add,edit,delete,update"></ToolbarSettings>
|
||||
</ej:Grid>
|
||||
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:QWToolConnectionstring %>" DeleteCommand="DELETE FROM [base_account_manuell] WHERE [account_code] = @account_code" InsertCommand="INSERT INTO [base_account_manuell] ([account_code], [account_name], [account_short], [account_type], [lg]) VALUES (@account_code, @account_name, @account_short, @account_type, @lg)" SelectCommand="SELECT * FROM [base_account_manuell]" UpdateCommand="UPDATE [base_account_manuell] SET [account_name] = @account_name, [account_short] = @account_short, [account_type] = @account_type, [lg] = @lg WHERE [account_code] = @account_code">
|
||||
<DeleteParameters>
|
||||
<asp:Parameter Name="account_code" Type="String" />
|
||||
</DeleteParameters>
|
||||
<InsertParameters>
|
||||
<asp:Parameter Name="account_code" Type="String" />
|
||||
<asp:Parameter Name="account_name" Type="String" />
|
||||
<asp:Parameter Name="account_short" Type="String" />
|
||||
<asp:Parameter Name="account_type" Type="String" />
|
||||
<asp:Parameter Name="lg" Type="String" />
|
||||
</InsertParameters>
|
||||
<UpdateParameters>
|
||||
<asp:Parameter Name="account_name" Type="String" />
|
||||
<asp:Parameter Name="account_short" Type="String" />
|
||||
<asp:Parameter Name="account_type" Type="String" />
|
||||
<asp:Parameter Name="lg" Type="String" />
|
||||
<asp:Parameter Name="account_code" Type="String" />
|
||||
</UpdateParameters>
|
||||
</asp:SqlDataSource>
|
||||
|
||||
</asp:Content>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue