Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フォームのデザインでラベル コントロールを使用していますが、ページの読み込み時にその特定のラベル コントロールを非表示にしたいと考えています。
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Label10.Visible = False End Sub
私は何をすべきか?私はvb.netが初めてです。
load イベント内ではなく、aspx コード内で可視性プロパティを設定してみてください。これにより、問題が解決する場合があります。
<asp:Label ID="lblValidation" runat="server" BackColor="Red" Text="Please fill in all of the date fields below to proceed" Visible="False"></asp:Label>
お役に立てれば!