質問編集履歴

3

エラー内容追記

2017/11/29 01:41

投稿

csuser01234
csuser01234

スコア38

test CHANGED
File without changes
test CHANGED
@@ -46,4 +46,56 @@
46
46
 
47
47
  成功するとWebブラウザ上に成功しましたと英語のメッセージが出るようなのですが、エラーが出ていました。
48
48
 
49
- エラー内容あとで追記予定
49
+ エラー内容
50
+
51
+ Server Error in '/' Application.
52
+
53
+
54
+
55
+ Runtime Error
56
+
57
+ Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
58
+
59
+
60
+
61
+ Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
62
+
63
+
64
+
65
+
66
+
67
+ <!-- Web.Config Configuration File -->
68
+
69
+
70
+
71
+ <configuration>
72
+
73
+ <system.web>
74
+
75
+ <customErrors mode="Off"/>
76
+
77
+ </system.web>
78
+
79
+ </configuration>
80
+
81
+
82
+
83
+ Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
84
+
85
+
86
+
87
+
88
+
89
+ <!-- Web.Config Configuration File -->
90
+
91
+
92
+
93
+ <configuration>
94
+
95
+ <system.web>
96
+
97
+ <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
98
+
99
+ </system.web>
100
+
101
+ </configuration>

2

2017/11/29 01:41

投稿

csuser01234
csuser01234

スコア38

test CHANGED
File without changes
test CHANGED
@@ -45,3 +45,5 @@
45
45
  Web発行が失敗しているかもしれません。
46
46
 
47
47
  成功するとWebブラウザ上に成功しましたと英語のメッセージが出るようなのですが、エラーが出ていました。
48
+
49
+ エラー内容あとで追記予定

1

2017/11/28 00:44

投稿

csuser01234
csuser01234

スコア38

test CHANGED
File without changes
test CHANGED
@@ -35,3 +35,13 @@
35
35
 
36
36
 
37
37
  以上、よろしくお願いします。
38
+
39
+
40
+
41
+
42
+
43
+ (追記)
44
+
45
+ Web発行が失敗しているかもしれません。
46
+
47
+ 成功するとWebブラウザ上に成功しましたと英語のメッセージが出るようなのですが、エラーが出ていました。