質問編集履歴

4

コードの修正

2018/07/03 04:51

投稿

nepia
nepia

スコア30

test CHANGED
File without changes
test CHANGED
@@ -206,7 +206,7 @@
206
206
 
207
207
  {
208
208
 
209
- TestViewModel = new TestViewModel ();
209
+ TestViewModel model = new TestViewModel ();
210
210
 
211
211
  model.SetSystemList();
212
212
 

3

Viewの名称を追加

2018/07/03 04:51

投稿

nepia
nepia

スコア30

test CHANGED
File without changes
test CHANGED
@@ -20,13 +20,15 @@
20
20
 
21
21
  Ajax.BeginFormを使用する為の参照設定 : NuGet => Microsoft.jQuery.Unobtrusive.Ajax 3.2.5
22
22
 
23
+ JQueryの読込も正しく行っております。
24
+
23
25
 
24
26
 
25
27
  現在、以下のソースにて、問題が発生しております。
26
28
 
27
29
 
28
30
 
29
- View
31
+ Test/Index.cshtml
30
32
 
31
33
  ```cshtml
32
34
 
@@ -40,9 +42,7 @@
40
42
 
41
43
 
42
44
 
43
- 部分View
45
+ Test/_List.cshtml
44
-
45
-
46
46
 
47
47
  ```cshtml
48
48
 

2

ソースについて、不要な箇所の修正

2018/07/03 04:49

投稿

nepia
nepia

スコア30

test CHANGED
File without changes
test CHANGED
@@ -18,6 +18,8 @@
18
18
 
19
19
  実行環境 : IIS(Visual Studioでの実行時)
20
20
 
21
+ Ajax.BeginFormを使用する為の参照設定 : NuGet => Microsoft.jQuery.Unobtrusive.Ajax 3.2.5
22
+
21
23
 
22
24
 
23
25
  現在、以下のソースにて、問題が発生しております。
@@ -118,10 +120,6 @@
118
120
 
119
121
  ```C#
120
122
 
121
- using BootstrapSite1.Utility.Convert;
122
-
123
- using BootstrapSite1.Utility.Database;
124
-
125
123
  using System.Collections.Generic;
126
124
 
127
125
  using System.Data;
@@ -188,10 +186,6 @@
188
186
 
189
187
  ```C#
190
188
 
191
- using BootstrapSite1.Models.Test;
192
-
193
- using BootstrapSite1.Utility.Database;
194
-
195
189
  using System.Collections.Generic;
196
190
 
197
191
  using System.Linq;

1

タグと環境について、修正させて頂きました

2018/07/03 01:29

投稿

nepia
nepia

スコア30

test CHANGED
File without changes
test CHANGED
@@ -4,6 +4,22 @@
4
4
 
5
5
 
6
6
 
7
+ 開発環境
8
+
9
+ OS : Windows10
10
+
11
+ .NET FrameWork : 4.5.2
12
+
13
+ Visual Studio : 2015 Professonal
14
+
15
+ Visual Studioプロジェクト : ASP.NET Web Application(.NET FrameWork)
16
+
17
+ プロジェクトテンプレート : MVCを指定
18
+
19
+ 実行環境 : IIS(Visual Studioでの実行時)
20
+
21
+
22
+
7
23
  現在、以下のソースにて、問題が発生しております。
8
24
 
9
25