Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<%@ language="C#" debug="true" %>
<html>
<script runat=server>
void Clicked (object o, EventArgs e)
{
Console.WriteLine (HttpContext.Current.Server.MapPath
("site.config"));
}
</script>
<head>
<title>Button</title>
</head>
<body>
<form runat="server">
<%= String.Format ("FilePath: {0} {1}", Context.Request.FilePath, GetType ().Name) %>
<%= String.Format ("CurrentExecutionFilePath: {0}", Context.Request.CurrentExecutionFilePath, GetType ().Name) %>
<br>
<asp:Button id="btn"
Text="Submit"
OnClick="Clicked"
runat="server"/>
</form>
</body>
</html>

View File

@@ -0,0 +1,27 @@
<%@ language="C#" %>
<html>
<script runat=server>
void Clicked (object o, EventArgs e)
{
Console.WriteLine (HttpContext.Current.Server.MapPath
("site.config"));
//Server.Transfer ("/other/index2.aspx");
//Server.Transfer ("/index2.aspx");
Server.Transfer ("/index 2.aspx");
}
</script>
<head>
<title>Button</title>
</head>
<body>
<form runat="server">
<%= String.Format ("FilePath: {0} {1}", Context.Request.FilePath, GetType ().Name) %>
<%= String.Format ("CurrentExecutionFilePath: {0}", Context.Request.CurrentExecutionFilePath, GetType ().Name) %>
<br>
<asp:Button id="btn"
Text="Submit"
OnClick="Clicked"
runat="server"/>
</form>
</body>
</html>

View File

@@ -0,0 +1,24 @@
<%@ language="C#" debug="true" %>
<html>
<script runat=server>
void Clicked (object o, EventArgs e)
{
Console.WriteLine (HttpContext.Current.Server.MapPath
("site.config"));
}
</script>
<head>
<title>Button</title>
</head>
<body>
<form runat="server">
<%= String.Format ("FilePath: {0} {1}", Context.Request.FilePath, GetType ().Name) %>
<%= String.Format ("CurrentExecutionFilePath: {0}", Context.Request.CurrentExecutionFilePath, GetType ().Name) %>
<br>
<asp:Button id="btn"
Text="Submit"
OnClick="Clicked"
runat="server"/>
</form>
</body>
</html>

View File

@@ -0,0 +1,24 @@
<%@ language="C#" debug="true" %>
<html>
<script runat=server>
void Clicked (object o, EventArgs e)
{
Console.WriteLine (HttpContext.Current.Server.MapPath
("site.config"));
}
</script>
<head>
<title>Button</title>
</head>
<body>
<form runat="server">
<%= String.Format ("FilePath: {0} {1}", Context.Request.FilePath, GetType ().Name) %>
<%= String.Format ("CurrentExecutionFilePath: {0}", Context.Request.CurrentExecutionFilePath, GetType ().Name) %>
<br>
<asp:Button id="btn"
Text="Submit"
OnClick="Clicked"
runat="server"/>
</form>
</body>
</html>

View File

@@ -0,0 +1,25 @@
<%@ language="C#" %>
<html>
<script runat=server>
void Clicked (object o, EventArgs e)
{
Console.WriteLine (HttpContext.Current.Server.MapPath
("site.config"));
Server.Transfer ("/index2.aspx");
}
</script>
<head>
<title>Button</title>
</head>
<body>
<form runat="server">
<%= String.Format ("FilePath: {0} {1}", Context.Request.FilePath, GetType ().Name) %>
<%= String.Format ("CurrentExecutionFilePath: {0}", Context.Request.CurrentExecutionFilePath, GetType ().Name) %>
<br>
<asp:Button id="btn"
Text="Submit"
OnClick="Clicked"
runat="server"/>
</form>
</body>
</html>

View File

@@ -0,0 +1,5 @@
<configuration>
<system.web>
<sessionState mode="InProc" cookieless="true" />
</system.web>
</configuration>