質問編集履歴

1

マスターページ、コンテンツページのコメント追加

2021/12/14 14:17

投稿

CCraida
CCraida

スコア6

test CHANGED
File without changes
test CHANGED
@@ -10,11 +10,13 @@
10
10
 
11
11
  イメージとしては、下記の三枚目の<asp:Content>タグ内をプログラムで動的に作成したいです。
12
12
 
13
- ```html
13
+ ```ASP
14
14
 
15
15
 
16
16
 
17
17
  Site.Master
18
+
19
+ //マスターページ
18
20
 
19
21
  <body>
20
22
 
@@ -36,11 +38,11 @@
36
38
 
37
39
 
38
40
 
39
- ```html
41
+ ```ASP
40
42
 
41
43
  WebForm1.aspx
42
44
 
43
-
45
+ //コンテンツページ
44
46
 
45
47
  <%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="fortest.WebForm1" %>
46
48
 
@@ -58,9 +60,11 @@
58
60
 
59
61
  下記の内容を動的に作成したい。
60
62
 
61
- ```html
63
+ ```ASP
62
64
 
63
65
  WebForm1.aspx
66
+
67
+ //コンテンツページ 
64
68
 
65
69
  <%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="fortest.WebForm1" %>
66
70