2

セットアップ中HealthMonitoringで、イベント ログを管理するためのページをいくつか書いています。

があるページと があるページがありGridViewますDetailsView。にGridViewは、各行にテンプレート ボタンがあり、そのDetailsView上に 2 番目のページをロードする onClick イベントがあります。

私がやりたいことは次のとおりです。テンプレート ボタンをクリックするGridViewと、2 番目のページに がロードされDetailsView、その特定のレコードが からテーブルに挿入GridViewされDetailsViewます。

ページングを有効にするDetailsView必要があります。から正しいレコードをロードするページ インデックスを見つけようとしていますGridView。現在、最初のページ インデックスが読み込まれるだけなので、必要なレコードの横をクリックする必要があります。

ページングを有効にしないと、2 つのグローバル変数を読み取って正しいレコードをDetailsViewテーブルにロードできますが、ページングを有効にすると、その方法がわかりません。

ページ上GridView:

protected void Details1_ButtonClick(object sender, EventArgs e)
{
    //I set 2 global variables here of the selected EventId and 
    //Details to read when the next page loads
    Response.Redirect("ErrorDetails.aspx");
}

DetailsViewページ上。

protected void Page_Load(object sender, EventArgs e)
{
    //without paging I can set the SqlDataSource1.SelectCommand to select 
    //the correct record using one of the global variables
}

DetailsView1_PageIndexChangedを使用して最初の行の値を取得しようとしDetailsView1_LoadましPage_Loadたが、何らかの理由で常に 1 ページ遅れています。この変数は、読み込み時に常に前のページの ID を示します。レコードを削除するページを追跡しようとしましたが、うまくいきません。

これは、ErrorDetails.aspx の DataSource と DetailsView です。

<asp:SqlDataSource 
    ID="SqlDataSource1" 
    runat="server" 
    ConnectionString="<%$ ConnectionStrings:DefaultConnection %>" 
    ProviderName="<%$ ConnectionStrings:DefaultConnection.ProviderName %>">
    <DeleteParameters>
        <asp:Parameter Name="EventId" />
    </DeleteParameters>
</asp:SqlDataSource>

<asp:DetailsView ID="DetailsView1" runat="server" Height="50px" Width="125px" DataSourceID="SqlDataSource1" DataKeyNames="EventId" AutoGenerateRows="False" OnItemDeleted="DetailsView1_ItemDeleted" OnItemDeleting="DetailsView1_ItemDeleting" AllowPaging="True" OnLoad="DetailsView1_Load" OnPageIndexChanged="DetailsView1_PageIndexChanged" OnPageIndexChanging="DetailsView1_PageIndexChanging">
    <AlternatingRowStyle CssClass="alt" />
    <Fields>

        <asp:CommandField ShowDeleteButton="True" />

        <asp:BoundField DataField="EventId" HeaderText="EventId" />
        <asp:BoundField DataField="EventTimeUtc" HeaderText="EventTimeUtc" />
        <asp:BoundField DataField="EventTime" HeaderText="EventTime" />
        <asp:BoundField DataField="EventType" HeaderText="EventType" />
        <asp:BoundField DataField="EventSequence" HeaderText="EventSequence" />
        <asp:BoundField DataField="EventOccurrence" HeaderText="EventOccurrence" />
        <asp:BoundField DataField="EventCode" HeaderText="EventCode" />
        <asp:BoundField DataField="EventDetailCode" HeaderText="EventDetailCode" />
        <asp:BoundField DataField="Message" HeaderText="Message" />
        <asp:BoundField DataField="ApplicationPath" HeaderText="ApplicationPath" />
        <asp:BoundField DataField="ApplicationVirtualPath" HeaderText="ApplicationVirtualPath" />
        <asp:BoundField DataField="MachineName" HeaderText="MachineName" />
        <asp:BoundField DataField="RequestUrl" HeaderText="RequestUrl" />
        <asp:BoundField DataField="ExceptionType" HeaderText="ExceptionType" />

        <asp:TemplateField HeaderText="Details">
            <ItemTemplate>
                <asp:Label ID="Label1" runat="server">
                    <%= EventVariables.EventDetails %>
                </asp:Label>
            </ItemTemplate>
        </asp:TemplateField>

        <asp:CommandField ShowDeleteButton="True" />

    </Fields>
    <PagerSettings Mode="NextPreviousFirstLast" />
    <PagerStyle CssClass="pager" />
</asp:DetailsView>

これは、親フォームの DataSource と GirdView です。

<asp:GridView 
        ID="ErrorGrid" 
        runat="server" 
        AutoGenerateColumns="False" 
        DataSourceID="SqlDataSource1"  
        DataKeyNames="EventId"
        OnRowDeleting="ErrorGrid_RowDeleting" 
        AllowPaging="True" 
        AllowSorting="True" 
        Font-Size="Small" 
        CellPadding="10" 
        CellSpacing="1" >
        <Columns>
            <asp:TemplateField ShowHeader="False">
                <ItemTemplate>
                    <asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False" CommandName="Delete" OnClientClick="return confirm('Are you sure you want to delete this record?');" Text="Delete"></asp:LinkButton>
                </ItemTemplate>
            </asp:TemplateField>
            <asp:TemplateField ShowHeader="False">
                <ItemTemplate>
                    <asp:LinkButton ID="Details1" Text="Details" runat="server" AutoPostBack="true" OnClick="Details1_ButtonClick" />
                </ItemTemplate>
            </asp:TemplateField>
            <asp:BoundField DataField="EventId" HeaderText="EventId" SortExpression="EventId" />
            <asp:BoundField DataField="EventTime" HeaderText="EventTime" SortExpression="EventTime" />
            <asp:BoundField DataField="RequestUrl" HeaderText="RequestUrl" SortExpression="RequestUrl" />
            <asp:BoundField DataField="ExceptionType" HeaderText="ExceptionType" SortExpression="ExceptionType" />
        </Columns>
    </asp:GridView>
    <asp:SqlDataSource 
        ID="SqlDataSource1" 
        runat="server" 
        ConnectionString="<%$ ConnectionStrings:DefaultConnection %>" 
        SelectCommand="SELECT * FROM [aspnet_WebEvent_Events]" 
        DeleteCommand="DELETE FROM [aspnet_WebEvent_Events] WHERE [EventId]=@EventId">
        <DeleteParameters>
            <asp:Parameter Name="EventId" />
        </DeleteParameters>
    </asp:SqlDataSource>
4

1 に答える 1