0
<asp:datalist ID="Datalist1" runat="server" 
                      Width="500px" >
                    <ItemTemplate>


<asp:Button ID="btnviewfullprofile" runat="server"   Text="View Full Profile" ToolTip="Click for Full Profile of User"  CommandArgument='<%#Eval("Uid")%>'  CommandName="fullprofile" />



 <asp:Button ID="sendinterest" runat="server" Text="Send Interest"  CommandArgument='<%#Eval("Uid")%>'  CommandName="sendinterest" />

 <asp:Label ID="lblstatus" runat="server" Visible="False"     ></asp:Label>                 


</ItemTemplate>
   </asp:datalist>

ラベルのテキストは、データベースに保存されているステータスの値に応じて変化します。

ボタンのコード

if (e.CommandName == "fullprofile")
    {
        int Id = int.Parse(e.CommandArgument.ToString());
        Response.Redirect("~/FullProfile.aspx?Id=" + Id);


 `enter code here`   }

しかし、データベースに保存されているステータスの値に基づいてラベルのテキストが変更されるようにするには、ラベルに何を書く必要がありますか

4

2 に答える 2