前提・実現したいこと
ASP.NETにて.aspxからユーザーコントロール(.ascx)にデータをセットしたい。
mainのWebRyohi.aspxにユーザーコントロール(WebRyohiControl1.ascx)が張り付けて有り
WebRyohi.aspxでデータを読み込みその内容をWebRyohiControl1.ascxの中のテキストに表示したいのですが
uc1.Shuku_T = "BBB" と代入しようととているのですが uc1.xxxのuc1が参照エラーになります。
OS: Windows10
Visual studio 2010
NET-FRAMEWORK 4.0
発生している問題・エラーメッセージ
ユーザコントロールにデータをセットしようとしているのだが
構文がエラーになります。
ASPX.VB
1Imports System.Data.SqlClient 2 3Public Class WebRyohi 4 Inherits System.Web.UI.Page 5 Private Property uc1 As WebPartList.WebRyohiControl1 6 7 Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 8 NAME.Text ![イメージ説明](d3bc89f70555b616ddd2f2e58bc875a6.png)" 9 uc1.Shuku_T = "BBB" <------ **プロテクトの為アクセスできません。 エラーになります。 10 (uc1は宣言されていません。 エラーになります) 11** End Sub 12 13End Class
ASPX.デザイン
1<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="WebRyohi.aspx.vb" Inherits="WebPartList.WebRyohi" %> 2 3<%@ Register src="WebRyohiControl1.ascx" tagname="WebRyohiControl1" tagprefix="uc1" %> 4 5<html xmlns="http://www.w3.org/1999/xhtml"> 6 <form id="Form1" method="post" runat="server" DefaultFocus="SRART_YMD" > 7 <asp:Label ID="NAME" runat="server" Text="Label"></asp:Label> 8</html> 9
ASCX.デザイン
1<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="WebRyohiControl1.ascx.vb" Inherits="WebPartList.WebRyohiControl1" %> 2 3<div class="ryohi"> 4 5 <table border="1"> 6 <td class="style1"><asp:TextBox ID="Shuku_T" runat="server" 7 Style="text-align: right" Height="20px" Width="118px" AutoPostBack="True" ></asp:TextBox>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/10 04:42 編集
退会済みユーザー
2021/03/10 04:55
退会済みユーザー
2021/03/10 07:07
2021/03/10 07:16
退会済みユーザー
2021/03/10 07:54
2021/03/10 23:28
退会済みユーザー
2021/03/11 00:28 編集
2021/03/11 01:15
退会済みユーザー
2021/03/11 01:43
2021/03/11 01:55
退会済みユーザー
2021/03/11 02:07 編集
2021/03/11 02:07
退会済みユーザー
2021/03/11 02:27 編集
2021/03/11 02:29 編集
退会済みユーザー
2021/03/11 02:33
2021/03/11 02:36
退会済みユーザー
2021/03/11 03:04 編集
2021/03/11 04:50 編集
退会済みユーザー
2021/03/11 05:17
2021/03/11 05:36
退会済みユーザー
2021/03/11 05:53 編集
2021/03/11 23:59