Fixed an error in one of the script.
This commit is contained in:
parent
4133c93ab6
commit
d7f61b7791
2 changed files with 49 additions and 25 deletions
|
@ -0,0 +1,24 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file is used by the publish/package process of your Web project. You can customize the behavior of this process
|
||||||
|
by editing this MSBuild file. In order to learn more about this please visit http://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
|
-->
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<WebPublishMethod>MSDeploy</WebPublishMethod>
|
||||||
|
<LastUsedBuildConfiguration>Debug</LastUsedBuildConfiguration>
|
||||||
|
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||||
|
<SiteUrlToLaunchAfterPublish>http://aspclassiccompiler.azurewebsites.net</SiteUrlToLaunchAfterPublish>
|
||||||
|
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
|
||||||
|
<ExcludeApp_Data>False</ExcludeApp_Data>
|
||||||
|
<MSDeployServiceURL>aspclassiccompiler.scm.azurewebsites.net:443</MSDeployServiceURL>
|
||||||
|
<DeployIisAppPath>AspClassicCompiler</DeployIisAppPath>
|
||||||
|
<RemoteSitePhysicalPath />
|
||||||
|
<SkipExtraFilesOnServer>True</SkipExtraFilesOnServer>
|
||||||
|
<MSDeployPublishMethod>WMSVC</MSDeployPublishMethod>
|
||||||
|
<EnableMSDeployBackup>True</EnableMSDeployBackup>
|
||||||
|
<UserName>$AspClassicCompiler</UserName>
|
||||||
|
<_SavePWD>True</_SavePWD>
|
||||||
|
<_DestinationType>AzureWebSite</_DestinationType>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
|
@ -1,25 +1,25 @@
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" >
|
<html xmlns="http://www.w3.org/1999/xhtml" >
|
||||||
<head>
|
<head>
|
||||||
<title></title>
|
<title></title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<%= WeekdayName(Weekday(DateSerial(1963, 11, 22))) %>
|
<%= WeekdayName(Weekday(DateSerial(1963, 11, 22))) %>
|
||||||
<%= WeekdayName(Weekday(DateSerial(1963, 10, 15))) %>
|
<%= WeekdayName(Weekday(DateSerial(1963, 10, 15))) %>
|
||||||
<%= WeekdayName(Weekday(DateSerial(1995, 6, 2))) %>
|
<%= WeekdayName(Weekday(DateSerial(1995, 6, 2))) %>
|
||||||
<%= WeekdayName(Weekday(DateSerial(1997, 5, 5))) %>
|
<%= WeekdayName(Weekday(DateSerial(1997, 5, 5))) %>
|
||||||
<%
|
<%
|
||||||
setlocale(4100)
|
setlocale(4100)
|
||||||
for i = 1 to 7
|
for i = 1 to 7
|
||||||
Response.Write(weekdayname(i) & "<BR/>")
|
Response.Write(weekdayname(i) & "<BR/>")
|
||||||
next
|
next
|
||||||
%>
|
%>
|
||||||
<%
|
<%
|
||||||
for i = 1 to 12
|
for i = 1 to 12
|
||||||
Response.Write(monthname(i) & "<BR/>")
|
Response.Write(monthname(i) & "<BR/>")
|
||||||
next
|
next
|
||||||
%>
|
%>
|
||||||
<%=FormatDateTime(DateSerial(1997, 5, 5), 1) %>
|
<%=FormatDateTime(DateSerial(1997, 5, 5), 1) %>
|
||||||
<%=FormatCurrentcy(10000000) %>
|
<%=FormatCurrency(10000000) %>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Add table
Reference in a new issue