Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/asp.net/37.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 首次加载页面:gridView中的页面索引不工作_C#_Asp.net_Gridview - Fatal编程技术网

C# 首次加载页面:gridView中的页面索引不工作

C# 首次加载页面:gridView中的页面索引不工作,c#,asp.net,gridview,C#,Asp.net,Gridview,我有两个网格视图:grvHeadline和gdvNotification,gdvNotification是按grvHeadline的选定项加载数据 页面加载时:gdvNotification的数据由grvHeadline的第一项加载 我的问题是: 页面加载是第一个:如果gdvNotification有分页(1,2,3,…),当我在gdvNotification中单击分页时,它不会运行。页面已重新加载,但页面索引为0 当我在grvHeadline中选择其他项目并重新选择第一个项目时,然后在gdvN

我有两个网格视图:
grvHeadline
gdvNotification
gdvNotification
是按grvHeadline的选定项加载数据

页面加载时:
gdvNotification
的数据由
grvHeadline
的第一项加载

我的问题是:

页面加载是第一个:如果
gdvNotification
有分页(1,2,3,…),当我在
gdvNotification
中单击分页时,它不会运行。页面已重新加载,但页面索引为
0

当我在
grvHeadline
中选择其他项目并重新选择第一个项目时,然后在
gdvNotification
中单击分页,它将运行,页面索引已更改


我正在调试:当页面第一次加载时:我在
gdvNotification
中单击页面索引,然后用
IsPostBack=True
调用
pageload()
,但没有调用
gdvNotification的事件
gdvNotification\u PageIndexChanging

这是我的密码:

protected void gdvNotification_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
    logger.Debug("Gridview Headline page index changing .");
    gdvNotification.PageIndex = e.NewPageIndex;
    HeadlineSelected(hdfNotificationIdSelected.Value, e.NewPageIndex);
    //gdvNotification.DataBind();
    lbPageIndex.Text = (e.NewPageIndex + 1).ToString(CultureInfo.InvariantCulture);
}

private void HeadlineSelected(字符串notificationIdSelected,int索引)
{
logger.Debug(“选择了头行”);
GetDataFromSessionAndCache();
IList infoNotificationList=新列表();
if(string.IsNullOrEmpty(notificationIdSelected))
{
//清楚的
IList数据=新列表()
{
新信息实体()
{
AuthorName=string.Empty,
Contents=string.Empty,
BulletinDateFrom=null,
BulletinDateTo=null,
Id=string.Empty,
Subject=string.Empty,
}
};
gdvNotification.DataSource=数据;
gdvNotification.DataBind();
pnPageIndex.Visible=false;
btnEditNotification.Enabled=false;
}
其他的
{
infoNotificationList=MasterDataHelper.GetInformationByHighOrderId(notificationIdSelected);
logger.Debug(“通知列表不为空”);
if(infoNotificationList!=null)
{
如果(infoNotificationList.Count==0)
{
pnPageIndex.Visible=false;
hdfNotificationId.Value=string.Empty;
btnEditNotification.Enabled=false;
}
其他的
{
如果(infoNotificationList.Count==1)
{
fakepanel.Visible=true;
}
其他的
{
fakepanel.Visible=false;
}
if(基本许可(许可信息跟进))
{
btnEditNotification.Enabled=true;
}
pnPageIndex.Visible=true;
gdvNotification.PageIndex=索引;
hdfNotificationId.Value=infoNotificationList[index].Id;
gdvNotification.DataSource=信息通知列表;
gdvNotification.DataBind();
}
logger.Debug(“标签总页的设置值”);
lblTotalPage.Text=gdvNotification.PageCount.ToString(CultureInfo.InvariantCulture);
lbPageIndex.Text=gdvNotification.PageCount==0
?gdvNotification.PageCount.ToString(CultureInfo.InvariantCulture)
:(gdvNotification.PageIndex+1).ToString(CultureInfo.InvariantCulture);
lbTotal.Text=infoNotificationList.Count().ToString(CultureInfo.InvariantCulture);
}
}
}
更新视图*.aspx中的代码

<table style="padding-top: 25px; padding-bottom: 25px; table-layout: fixed" width="100%">
    <tr>
        <td style="width: 49%" class="Top">
            <table class="Master" style="width: 100%; height: 35px; border-spacing: 2px 0px">
                <tr style="padding: 0px 0px 0px 0px; margin: 0px 0px 0px 0px;">
                    <td class="BasicValue" style="width: 100%; padding: 0px 0px 0px 0px; margin: 0px 0px 0px 0px;">
                        <asp:Panel ID="Panel2" runat="server" DefaultButton="btnSearch">
                            <asp:TextBox ID="txtFuzzySearch" runat="server" Style="width: 76%; height: 25px; text-align: left;
                                float: left; border-style: double; border-color: Gray;" />
                            <asp:Label ID="label" runat="server" Text="※あいまい検索" Width="20%" Style="text-align: center;
                                vertical-align: middle; margin-top: 5px;" />
                            <asp:Button ID="btnSearch" runat="server" Text="Button" Style="display: none" OnClick="btnSearch_Click" />
                        </asp:Panel>
                    </td>
                </tr>
            </table>
            <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                <ContentTemplate>
                    <asp:Panel ID="panelContainer" runat="server"  Width="100%" Height="582px" Style="margin-top: 0px;overflow-y: auto">
                        <asp:HiddenField ID="hdfNotificationIdSelected" runat="server" Value="" />
                        <asp:GridView ID="grvHeadline" runat="server" AutoGenerateColumns="False" Style="width: 100%"
                            BorderWidth="0px" CellSpacing="2" CellPadding="10" GridLines="None" ShowHeader="false"
                            OnSelectedIndexChanged="grvHeadline_SelectedIndexChanged" OnRowDataBound="grvHeadline_RowDataBound">
                            <HeaderStyle CssClass="BasicColumnTitle" />
                            <AlternatingRowStyle CssClass="RowStyleEven" />
                            <RowStyle CssClass="RowStyleOdd" />
                            <SelectedRowStyle CssClass="RowStyleHi heallineSelected" />
                            <Columns>
                                <asp:TemplateField>
                                    <HeaderStyle Width="10%" />
                                    <ItemStyle Width="80%" />
                                    <ItemTemplate>

                                        <table style="border-spacing: 0px">
                                        <tr>
                                            <td>
                                                <asp:Image ID="Image6" runat="server" ImageAlign="Left" Style="display: none" ImageUrl="../img/triangle-on.png" />
                                                <asp:Image ID="Image1" runat="server" ImageAlign="Left" Style="display: none" ImageUrl="../img/triangle-off.png" />
                                                <asp:Image ID="Image4" runat="server" Visible='<% #int.Parse(Eval("ThreadQty").ToString()) < 2%>'
                                            ImageAlign="Left" ImageUrl="../img/Doc1.png" />
                                        <asp:Image ID="Image5" runat="server" Visible='<% #int.Parse(Eval("ThreadQty").ToString())>=2%>'
                                            ImageAlign="Left" ImageUrl="../img/Doc2.png" />
                                            </td>
                                            <td>
                                                <asp:Label CssClass="bold" Style="resize: none; width: 100%; margin-left: 5px; vertical-align: bottom;  
                                                    text-align: justify" ID="txt1" Text='<%#DevideString(HttpUtility.HtmlEncode(Eval("Subject")), 35) %>' runat="server">
                                                </asp:Label><br />
                                                <asp:Label  CssClass="bold" Style="resize: none; margin-left: 5px; vertical-align: bottom; text-align: justify;"
                                                    ID="txt2" Text='<%#DevideString(HttpUtility.HtmlEncode(Eval("AuthorName")), 35) %>' runat="server" />
                                            </td>
                                        </tr>
                                    </table>
                                        <asp:HiddenField ID="hdfSelectedId" runat="server" Value='<% #Eval("Id")%>' />
                                    </ItemTemplate>
                                </asp:TemplateField>
                                <asp:TemplateField>
                                    <HeaderStyle Width="3%" />
                                    <ItemStyle Width="20%" VerticalAlign="Top" CssClass="position" />
                                    <ItemTemplate>
                                        <table style="border-spacing: 0px; height: 100%;" width="100%">
                                            <tr>
                                                <td class="Top Left" style="height: auto;">
                                                    <asp:Image ID="Image3" runat="server" CssClass="Top Left" Visible='<%# ShowImgUpScreen(DateTime.Parse(Eval("BulletinDateFrom").ToString()),Eval("ThreadQty").ToString()) %>'
                                                        ImageAlign="Left" Style="vertical-align: top;" ImageUrl="~/img/Up1.png" />
                                                    <asp:Image ID="Image7" runat="server" CssClass="Top Left" Visible='<%# ShowImgNewScreen(DateTime.Parse(Eval("BulletinDateFrom").ToString()),Eval("ThreadQty").ToString()) %>'
                                                        ImageAlign="Left" Style="vertical-align: top;" ImageUrl="~/img/New2.png" />
                                                </td>
                                            </tr>
                                        </table>
                                        <asp:Label ID="Label4" runat="server" CssClass="Right Bottom" Text='<%#CheckDateTime((DateTime)Eval("BulletinDateFrom"))%>'
                                            Style="float: right; position: absolute; bottom: 3px; right: 3px" />
                                    </ItemTemplate>
                                </asp:TemplateField>
                            </Columns>
                        </asp:GridView>
                    </asp:Panel>
                </ContentTemplate>
                <Triggers>
                    <asp:AsyncPostBackTrigger ControlID="grvHeadline" EventName="SelectedIndexChanged" />
                </Triggers>
            </asp:UpdatePanel>
            <table class="BasicValue" style="width: 100%; margin-bottom: -58px; margin-top: 43.5px">
                <tr style="padding: 0px 0px 0px 0px; margin: 100px 0px 0px 0px;">
                    <td class="BasicValue" style="padding: 5px 10px 5px 10px">
                        <asp:Button ID="btnNewHeadline" class="ButtonSchedule" runat="server" Text="ヘッドラインの新親追加"
                            Height="100%" Style="text-align: center; float: right; margin: 0px 5px 0px 0px;"
                                Width="165px" OnClick="btnNewHeadlineRegist_Click" />
                    </td>
                </tr>
            </table>
        </td>
        <td style="width: 1%;" class="Center">
                <div class="verticalLine" style="background-color: #C5C5CA; text-align: center; height: 696px;
                    width: 4px; margin-left: 48%">
                </div>
            </td>
        <td style="width: 49%; position: relative" class="Top">
            <asp:UpdatePanel ID="UpdatePanel2" runat="server">
                <ContentTemplate>
                        <asp:HiddenField ID="hdfNotificationId" runat="server" />
                        <asp:GridView ID="gdvNotification" runat="server" AutoGenerateColumns="False" Style="width: 100%;"
                            BorderWidth="0px" CellSpacing="0" CellPadding="0" GridLines="None" PageSize="1"
                            AllowPaging="True" ShowHeader="false" OnPageIndexChanging="gdvNotification_PageIndexChanging">
                            <HeaderStyle CssClass="BasicColumnTitle" />
                            <Columns>
                                <asp:TemplateField>
                                    <ItemTemplate>
                                        <asp:Panel ID="panel1" runat="server" Width="100%" Height="618" ScrollBars="Vertical">
                                            <table style="width: 100%;">
                                                <tbody>
                                                    <tr style="height: 40px">
                                                        <td class="BasicValue" style="vertical-align: bottom;padding-left:2em">
                                                            <div>
                                                                <asp:Label ID="lblhead" CssClass="bold" runat="server" Text='<% #Eval("Subject")%>' Style=" font-weight: bold"></asp:Label>
                                                            </div>
                                                        </td>
                                                    </tr>
                                                    <tr style="height: 40px">
                                                        <td class=" BasicValue" style="vertical-align: bottom ;padding-left: 2em;">
                                                            <div>
                                                                <asp:Label ID="Label2" runat="server" Style=" font-weight: bold" Text='<% #Eval("AuthorName")%>'></asp:Label><asp:Label
                                                                    ID="Label3" runat="server" Style="float: right" Text='<%# string.Format("{0:yyyy/MM/dd hh:mm}",Eval("BulletinDateFrom"))%>'></asp:Label></div>
                                                        </td>
                                                    </tr>
                                                    <tr style="height: 40px">
                                                        <td class="BasicValue" style="vertical-align: bottom">
                                                            <div>
                                                                <asp:Label ID="lblSection" runat="server" Style="padding-left: 2em;" Text='<%# GetSectionName(Eval("Id").ToString())%>'></asp:Label>
                                                            </div>
                                                    </tr>
                                                    <tr style="height: 497px;">
                                                        <td class="BasicValue" style="text-align: left; vertical-align: top; padding-left:2em ">
                                                            <asp:Label ID="lblContent" runat="server"
                                                                Text='<% #Eval("Contents")%>'></asp:Label>
                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>
                                        </asp:Panel>
                                    </ItemTemplate>
                                </asp:TemplateField>
                            </Columns>
                        </asp:GridView>
                        <asp:Panel runat="server" ID="fakepanel" Height="30px">
                </asp:Panel>
                    <div class="Center" style="margin-bottom: 0px; margin-top: 0cm; font-family: MS Pゴシック">
                        <asp:Panel ID="pnPageIndex" runat="server">
                            <span>Page
                                <asp:Label ID="lbPageIndex" runat="server" /><span>/</span><asp:Label ID="lblTotalPage"
                                    runat="server"></asp:Label>
                                <span>(<asp:Label ID="lbTotal" runat="server"></asp:Label>件)</span></span>
                        </asp:Panel>
                    </div>
                    <table style="width: 100%;position: absolute; bottom: 0px">
                        <tr style="margin: 0px 0px 0px 0px;">
                            <td class="BasicValue" style="margin: 0px 0px 0px 0px; width: 100%; padding: 5px 10px 5px 10px">
                                <asp:Button ID="btnEditNotification" CssClass="ButtonSchedule" runat="server" Text="お知らせの編集"
                                Height="85%" Style="float: left; text-align: center; margin: 0px 10px 0px 0px; position: relative; left: 260px"
                                Width="158px" OnClick="btnEditNotification_Click" />
                                <asp:Button ID="btnUpdateNotification" CssClass="ButtonSchedule" runat="server" Text="このお知らせに追記"
                                Height="85%" Style="float: right; text-align: center; margin: 0px 5px 0px 0px;"
                                Width="158px" OnClick="btnUpdateNotification_Click" />

                            </td>
                        </tr>
                    </table>
                </ContentTemplate>
                <Triggers>
                    <asp:AsyncPostBackTrigger ControlID="grvHeadline" EventName="SelectedIndexChanged" />
                    <asp:AsyncPostBackTrigger ControlID="gdvNotification" EventName="PageIndexChanging" />
                </Triggers>
            </asp:UpdatePanel>
        </td>
    </tr>
</table>


<table style="padding-top: 25px; padding-bottom: 25px; table-layout: fixed" width="100%">
    <tr>
        <td style="width: 49%" class="Top">
            <table class="Master" style="width: 100%; height: 35px; border-spacing: 2px 0px">
                <tr style="padding: 0px 0px 0px 0px; margin: 0px 0px 0px 0px;">
                    <td class="BasicValue" style="width: 100%; padding: 0px 0px 0px 0px; margin: 0px 0px 0px 0px;">
                        <asp:Panel ID="Panel2" runat="server" DefaultButton="btnSearch">
                            <asp:TextBox ID="txtFuzzySearch" runat="server" Style="width: 76%; height: 25px; text-align: left;
                                float: left; border-style: double; border-color: Gray;" />
                            <asp:Label ID="label" runat="server" Text="※あいまい検索" Width="20%" Style="text-align: center;
                                vertical-align: middle; margin-top: 5px;" />
                            <asp:Button ID="btnSearch" runat="server" Text="Button" Style="display: none" OnClick="btnSearch_Click" />
                        </asp:Panel>
                    </td>
                </tr>
            </table>
            <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                <ContentTemplate>
                    <asp:Panel ID="panelContainer" runat="server"  Width="100%" Height="582px" Style="margin-top: 0px;overflow-y: auto">
                        <asp:HiddenField ID="hdfNotificationIdSelected" runat="server" Value="" />
                        <asp:GridView ID="grvHeadline" runat="server" AutoGenerateColumns="False" Style="width: 100%"
                            BorderWidth="0px" CellSpacing="2" CellPadding="10" GridLines="None" ShowHeader="false"
                            OnSelectedIndexChanged="grvHeadline_SelectedIndexChanged" OnRowDataBound="grvHeadline_RowDataBound">
                            <HeaderStyle CssClass="BasicColumnTitle" />
                            <AlternatingRowStyle CssClass="RowStyleEven" />
                            <RowStyle CssClass="RowStyleOdd" />
                            <SelectedRowStyle CssClass="RowStyleHi heallineSelected" />
                            <Columns>
                                <asp:TemplateField>
                                    <HeaderStyle Width="10%" />
                                    <ItemStyle Width="80%" />
                                    <ItemTemplate>

                                        <table style="border-spacing: 0px">
                                        <tr>
                                            <td>
                                                <asp:Image ID="Image6" runat="server" ImageAlign="Left" Style="display: none" ImageUrl="../img/triangle-on.png" />
                                                <asp:Image ID="Image1" runat="server" ImageAlign="Left" Style="display: none" ImageUrl="../img/triangle-off.png" />
                                                <asp:Image ID="Image4" runat="server" Visible='<% #int.Parse(Eval("ThreadQty").ToString()) < 2%>'
                                            ImageAlign="Left" ImageUrl="../img/Doc1.png" />
                                        <asp:Image ID="Image5" runat="server" Visible='<% #int.Parse(Eval("ThreadQty").ToString())>=2%>'
                                            ImageAlign="Left" ImageUrl="../img/Doc2.png" />
                                            </td>
                                            <td>
                                                <asp:Label CssClass="bold" Style="resize: none; width: 100%; margin-left: 5px; vertical-align: bottom;  
                                                    text-align: justify" ID="txt1" Text='<%#DevideString(HttpUtility.HtmlEncode(Eval("Subject")), 35) %>' runat="server">
                                                </asp:Label><br />
                                                <asp:Label  CssClass="bold" Style="resize: none; margin-left: 5px; vertical-align: bottom; text-align: justify;"
                                                    ID="txt2" Text='<%#DevideString(HttpUtility.HtmlEncode(Eval("AuthorName")), 35) %>' runat="server" />
                                            </td>
                                        </tr>
                                    </table>
                                        <asp:HiddenField ID="hdfSelectedId" runat="server" Value='<% #Eval("Id")%>' />
                                    </ItemTemplate>
                                </asp:TemplateField>
                                <asp:TemplateField>
                                    <HeaderStyle Width="3%" />
                                    <ItemStyle Width="20%" VerticalAlign="Top" CssClass="position" />
                                    <ItemTemplate>
                                        <table style="border-spacing: 0px; height: 100%;" width="100%">
                                            <tr>
                                                <td class="Top Left" style="height: auto;">
                                                    <asp:Image ID="Image3" runat="server" CssClass="Top Left" Visible='<%# ShowImgUpScreen(DateTime.Parse(Eval("BulletinDateFrom").ToString()),Eval("ThreadQty").ToString()) %>'
                                                        ImageAlign="Left" Style="vertical-align: top;" ImageUrl="~/img/Up1.png" />
                                                    <asp:Image ID="Image7" runat="server" CssClass="Top Left" Visible='<%# ShowImgNewScreen(DateTime.Parse(Eval("BulletinDateFrom").ToString()),Eval("ThreadQty").ToString()) %>'
                                                        ImageAlign="Left" Style="vertical-align: top;" ImageUrl="~/img/New2.png" />
                                                </td>
                                            </tr>
                                        </table>
                                        <asp:Label ID="Label4" runat="server" CssClass="Right Bottom" Text='<%#CheckDateTime((DateTime)Eval("BulletinDateFrom"))%>'
                                            Style="float: right; position: absolute; bottom: 3px; right: 3px" />
                                    </ItemTemplate>
                                </asp:TemplateField>
                            </Columns>
                        </asp:GridView>
                    </asp:Panel>
                </ContentTemplate>
                <Triggers>
                    <asp:AsyncPostBackTrigger ControlID="grvHeadline" EventName="SelectedIndexChanged" />
                </Triggers>
            </asp:UpdatePanel>
            <table class="BasicValue" style="width: 100%; margin-bottom: -58px; margin-top: 43.5px">
                <tr style="padding: 0px 0px 0px 0px; margin: 100px 0px 0px 0px;">
                    <td class="BasicValue" style="padding: 5px 10px 5px 10px">
                        <asp:Button ID="btnNewHeadline" class="ButtonSchedule" runat="server" Text="ヘッドラインの新親追加"
                            Height="100%" Style="text-align: center; float: right; margin: 0px 5px 0px 0px;"
                                Width="165px" OnClick="btnNewHeadlineRegist_Click" />
                    </td>
                </tr>
            </table>
        </td>
        <td style="width: 1%;" class="Center">
                <div class="verticalLine" style="background-color: #C5C5CA; text-align: center; height: 696px;
                    width: 4px; margin-left: 48%">
                </div>
            </td>
        <td style="width: 49%; position: relative" class="Top">
            <asp:UpdatePanel ID="UpdatePanel2" runat="server">
                <ContentTemplate>
                        <asp:HiddenField ID="hdfNotificationId" runat="server" />
                        <asp:GridView ID="gdvNotification" runat="server" AutoGenerateColumns="False" Style="width: 100%;"
                            BorderWidth="0px" CellSpacing="0" CellPadding="0" GridLines="None" PageSize="1"
                            AllowPaging="True" ShowHeader="false" OnPageIndexChanging="gdvNotification_PageIndexChanging">
                            <HeaderStyle CssClass="BasicColumnTitle" />
                            <Columns>
                                <asp:TemplateField>
                                    <ItemTemplate>
                                        <asp:Panel ID="panel1" runat="server" Width="100%" Height="618" ScrollBars="Vertical">
                                            <table style="width: 100%;">
                                                <tbody>
                                                    <tr style="height: 40px">
                                                        <td class="BasicValue" style="vertical-align: bottom;padding-left:2em">
                                                            <div>
                                                                <asp:Label ID="lblhead" CssClass="bold" runat="server" Text='<% #Eval("Subject")%>' Style=" font-weight: bold"></asp:Label>
                                                            </div>
                                                        </td>
                                                    </tr>
                                                    <tr style="height: 40px">
                                                        <td class=" BasicValue" style="vertical-align: bottom ;padding-left: 2em;">
                                                            <div>
                                                                <asp:Label ID="Label2" runat="server" Style=" font-weight: bold" Text='<% #Eval("AuthorName")%>'></asp:Label><asp:Label
                                                                    ID="Label3" runat="server" Style="float: right" Text='<%# string.Format("{0:yyyy/MM/dd hh:mm}",Eval("BulletinDateFrom"))%>'></asp:Label></div>
                                                        </td>
                                                    </tr>
                                                    <tr style="height: 40px">
                                                        <td class="BasicValue" style="vertical-align: bottom">
                                                            <div>
                                                                <asp:Label ID="lblSection" runat="server" Style="padding-left: 2em;" Text='<%# GetSectionName(Eval("Id").ToString())%>'></asp:Label>
                                                            </div>
                                                    </tr>
                                                    <tr style="height: 497px;">
                                                        <td class="BasicValue" style="text-align: left; vertical-align: top; padding-left:2em ">
                                                            <asp:Label ID="lblContent" runat="server"
                                                                Text='<% #Eval("Contents")%>'></asp:Label>
                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>
                                        </asp:Panel>
                                    </ItemTemplate>
                                </asp:TemplateField>
                            </Columns>
                        </asp:GridView>
                        <asp:Panel runat="server" ID="fakepanel" Height="30px">
                </asp:Panel>
                    <div class="Center" style="margin-bottom: 0px; margin-top: 0cm; font-family: MS Pゴシック">
                        <asp:Panel ID="pnPageIndex" runat="server">
                            <span>Page
                                <asp:Label ID="lbPageIndex" runat="server" /><span>/</span><asp:Label ID="lblTotalPage"
                                    runat="server"></asp:Label>
                                <span>(<asp:Label ID="lbTotal" runat="server"></asp:Label>件)</span></span>
                        </asp:Panel>
                    </div>
                    <table style="width: 100%;position: absolute; bottom: 0px">
                        <tr style="margin: 0px 0px 0px 0px;">
                            <td class="BasicValue" style="margin: 0px 0px 0px 0px; width: 100%; padding: 5px 10px 5px 10px">
                                <asp:Button ID="btnEditNotification" CssClass="ButtonSchedule" runat="server" Text="お知らせの編集"
                                Height="85%" Style="float: left; text-align: center; margin: 0px 10px 0px 0px; position: relative; left: 260px"
                                Width="158px" OnClick="btnEditNotification_Click" />
                                <asp:Button ID="btnUpdateNotification" CssClass="ButtonSchedule" runat="server" Text="このお知らせに追記"
                                Height="85%" Style="float: right; text-align: center; margin: 0px 5px 0px 0px;"
                                Width="158px" OnClick="btnUpdateNotification_Click" />

                            </td>
                        </tr>
                    </table>
                </ContentTemplate>
                <Triggers>
                    <asp:AsyncPostBackTrigger ControlID="grvHeadline" EventName="SelectedIndexChanged" />
                    <asp:AsyncPostBackTrigger ControlID="gdvNotification" EventName="PageIndexChanging" />
                </Triggers>
            </asp:UpdatePanel>
        </td>
    </tr>
</table>