Mark tests as not working under TARGET_JVM
[mono.git] / mcs / class / System.Web / Test / mainsoft / MainsoftWebApp / System_Web / PageDirectories / Controls1 / UserControl1.ascx.cs
1 using System;\r
2 using System.Data;\r
3 using System.Configuration;\r
4 using System.Collections;\r
5 using System.Web;\r
6 using System.Web.Security;\r
7 using System.Web.UI;\r
8 using System.Web.UI.WebControls;\r
9 using System.Web.UI.WebControls.WebParts;\r
10 using System.Web.UI.HtmlControls;\r
11 \r
12 namespace GHTTests.System_Web_dll.PageDirectories.Controls1\r
13 {\r
14         public partial class UserControl1 : System.Web.UI.UserControl\r
15         {\r
16                 protected void Page_Load (object sender, EventArgs e)\r
17                 {\r
18                         Controls.Add(new LiteralControl (UrlTestUtils.FixUrlForDirectoriesTest (ResolveUrl ("UserPage.aspx"))));\r
19                         Controls.Add (new LiteralControl ("<br>"));\r
20 \r
21                         Controls.Add(new LiteralControl (UrlTestUtils.FixUrlForDirectoriesTest (ResolveUrl ("/UserPage.aspx"))));\r
22                         Controls.Add (new LiteralControl ("<br>"));\r
23 \r
24                         Controls.Add(new LiteralControl (UrlTestUtils.FixUrlForDirectoriesTest (ResolveUrl ("../UserPage.aspx"))));\r
25                         Controls.Add (new LiteralControl ("<br>"));\r
26 \r
27                         Controls.Add(new LiteralControl (UrlTestUtils.FixUrlForDirectoriesTest (ResolveUrl ("~/UserPage.aspx"))));\r
28                         Controls.Add (new LiteralControl ("<br>"));\r
29 \r
30                         Controls.Add(new LiteralControl (UrlTestUtils.FixUrlForDirectoriesTest (TemplateSourceDirectory)));\r
31                         Controls.Add (new LiteralControl ("<br>"));\r
32 \r
33                         Controls.Add(new LiteralControl (UrlTestUtils.FixUrlForDirectoriesTest (AppRelativeTemplateSourceDirectory)));\r
34                         Controls.Add (new LiteralControl ("<br>"));\r
35 \r
36                         Controls.Add(new LiteralControl (UrlTestUtils.FixUrlForDirectoriesTest (AppRelativeVirtualPath)));\r
37                         Controls.Add (new LiteralControl ("<br>"));\r
38                 }\r
39         }\r
40 }