質問するログイン新規登録

質問編集履歴

4

タグを追加しました。

2018/01/26 08:04

投稿

meesa
meesa

スコア12

title CHANGED
File without changes
body CHANGED
File without changes

3

誤記訂正

2018/01/26 08:04

投稿

meesa
meesa

スコア12

title CHANGED
File without changes
body CHANGED
@@ -63,7 +63,7 @@
63
63
  Dim Comment As New String = ""
64
64
  Dim M01 As New M01_GetData
65
65
 
66
- 'NGコメントを取得
66
+ 'コメントを取得
67
67
  Comment = hid_Comment.Value
68
68
 
69
69
  'コメントDB登録(コメントと更新日時をDB登録している)

2

誤記訂正

2018/01/26 07:46

投稿

meesa
meesa

スコア12

title CHANGED
File without changes
body CHANGED
@@ -59,7 +59,7 @@
59
59
  ```
60
60
 
61
61
  ```asp.net
62
- Protected Sub btn_Comment_Click(sender As Object, e As EventArgs) Handles btn_NG.Click
62
+ Protected Sub btn_Comment_Click(sender As Object, e As EventArgs) Handles btn_comment.Click
63
63
  Dim Comment As New String = ""
64
64
  Dim M01 As New M01_GetData
65
65
 

1

親画面HTMLコードを追記しました。

2018/01/26 07:45

投稿

meesa
meesa

スコア12

title CHANGED
File without changes
body CHANGED
@@ -35,6 +35,28 @@
35
35
  }
36
36
  }
37
37
  ```
38
+ ```HTML
39
+ <form id="form1" runat="server">
40
+ <div id="main">
41
+ <h1>申請内容</h1>
42
+ <div class="DemInfo">
43
+ 状況:<asp:Label ID="lbl_Status" runat="server" Text="作成中"></asp:Label>
44
+ <asp:HiddenField ID="hid_StatusCD" runat="server" Value="0" />
45
+
46
+ <label class="wid80">申請管理No.</label>
47
+ <asp:Label ID="lbl_DemNo" runat="server" Text="未設定" class="clearLeft"></asp:Label>
48
+ <asp:HiddenField ID="hid_Comment" runat="server" />
49
+ </div>
50
+ <div class="DemButton">
51
+ <asp:Button ID="btn_Cancel" runat="server" Text="キャンセル" class="btn_Middle"
52
+ onclientclick="window.close()" />
53
+ <asp:Button ID="btn_comment" runat="server" Text="コメント入力"
54
+ class="btn_Learge" onclientclick="ClickCommentButton()" />
55
+ <asp:Button ID="btn_OK" runat="server" Text="更新" class="btn_Middle" />
56
+ </div>
57
+ </div>
58
+ </form>
59
+ ```
38
60
 
39
61
  ```asp.net
40
62
  Protected Sub btn_Comment_Click(sender As Object, e As EventArgs) Handles btn_NG.Click