送分的白痴问题,解决立刻结帖

时间:2021-11-25 00:21:33
在一本电子书上看到的ASP代码,我想把他加到.NET的HTML里面,但是我现在的加法有错误,请大家指正.

<HTML>
<HEAD>
<title>WebForm1</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout" bgcolor="#00b000">
<form id="Form1" method="post" runat="server">
<FONT face="MS UI Gothic" color="#66ff33"></FONT>

<% If Time < #12:00:00# And Time >= #00:00:00# Then %>
<% bgc="silver" %>
good ming!
<% ElseIf Time < #19:00:00# And Time >= #12:00:00# Then %>
<% bgc="navy" %>
good afternoon!
<% Else %>
<% bgc="red" %>
good evening!
<% End If %>
</form>
</body>
</HTML>
帮忙看看错在哪里

16 个解决方案

#1


把报错贴上来看看

#2


kao,感觉像是asp里的vbs
怎么可能直接能在.net里用呢

#3


我用的是日文操作系统啊

'/lianxi' アプリケーションでサーバー エラーが発生しました。
--------------------------------------------------------------------------------

コンパイル エラー 
説明 : この要求の処理に必要なリソースのコンパイル中にエラーが発生しました。以下の解析エラーの詳細を確認し、ソース コードに変更を加えてください。 

コンパイラ エラー メッセージ: CS1040: プリプロセッサ ディレクティブは行でスペース以外の最初の文字でなければなりません。

ソース エラー:

 

行 13:  <FONT face="MS UI Gothic" color="#66ff33"></FONT>
行 14: 
行 15:  <% If Time < #12:00:00# And Time >= #00:00:00# Then %>
行 16:  <% bgc="silver" %>
行 17:  good ming!
 

ソース ファイル: F:\c# projects1\WebForm1.aspx    行: 15 



詳しいコンパイラ出力を表示:


C:\WINNT\system32> "c:\winnt\microsoft.net\framework\v1.1.4322\csc.exe" /t:library /utf8output /R:"c:\winnt\microsoft.net\framework\v1.1.4322\temporary asp.net files\lianxi\5cbfd2b2\895e0c0e\-6yr_hbw.dll" /R:"c:\winnt\microsoft.net\framework\v1.1.4322\temporary asp.net files\lianxi\5cbfd2b2\895e0c0e\assembly\dl2\2710c0c6\00192202_a08dc501\lianxi.dll" /R:"c:\winnt\microsoft.net\framework\v1.1.4322\mscorlib.dll" /R:"c:\winnt\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f11d50a3a\system.enterpriseservices.dll" /R:"c:\winnt\assembly\gac\system.data\1.0.5000.0__b77a5c561934e089\system.data.dll" /R:"c:\winnt\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f7f11d50a3a\system.web.mobile.dll" /R:"c:\winnt\assembly\gac\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\system.drawing.dll" /R:"c:\winnt\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e089\system.xml.dll" /R:"c:\winnt\assembly\gac\system.web.services\1.0.5000.0__b03f5f7f11d50a3a\system.web.services.dll" /R:"c:\winnt\assembly\gac\system\1.0.5000.0__b77a5c561934e089\system.dll" /R:"c:\winnt\assembly\gac\system.web\1.0.5000.0__b03f5f7f11d50a3a\system.web.dll" /out:"C:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\lianxi\5cbfd2b2\895e0c0e\b69ndprr.dll" /D:DEBUG /debug+ /optimize- /win32res:"C:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\lianxi\5cbfd2b2\895e0c0e\b69ndprr.res" /warnaserror /w:1  "C:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\lianxi\5cbfd2b2\895e0c0e\b69ndprr.0.cs"


Microsoft(R) Visual C# .NET Compiler version 7.10.3052.4
for Microsoft(R) .NET Framework version 1.1.4322
Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.

F:\c# projects1\WebForm1.aspx(15,24): error CS1040: プリプロセッサ ディレクティブは行でスペース以外の最初の文字でなければなりません。
F:\c# projects1\WebForm1.aspx(18,28): error CS1040: プリプロセッサ ディレクティブは行でスペース以外の最初の文字でなければなりません。

 



#4




<% If Time < #12:00:00# And Time >= #00:00:00# Then %>
<% bgc="silver" %>
good ming!
<% ElseIf Time < #19:00:00# And Time >= #12:00:00# Then %>
<% bgc="navy" %>
good afternoon!
<% Else %>
<% bgc="red" %>
good evening!
<% End If %>
改成
<%
//string bgc;
string hello;
DateTime Time = DateTime.Now;
if (Time.Hour < 12 && Time.Hour >= 0)
{
    bgc = "silver";
    hello = "good ming!";//英语要学好啊
}
else if (Time.Hour < 19 && Time.Hour >= 12)
{
    bgc = "navy";
    hello = "good afternoon!";//这还差不多
}
else
{
    bgc = "red";
    hello = "good evening!";
}
%>
<%=hello%>

典型的asp风格,ASP.NET没这么写的

#5


完全なコンパイル ソースを表示:


行 1:    //------------------------------------------------------------------------------
行 2:    // <autogenerated>
行 3:    //     This code was generated by a tool.
行 4:    //     Runtime Version: 1.1.4322.573
行 5:    //
行 6:    //     Changes to this file may cause incorrect behavior and will be lost if 
行 7:    //     the code is regenerated.
行 8:    // </autogenerated>
行 9:    //------------------------------------------------------------------------------
行 10:   
行 11:   namespace ASP {
行 12:       using System;
行 13:       using System.Collections;
行 14:       using System.Collections.Specialized;
行 15:       using System.Configuration;
行 16:       using System.Text;
行 17:       using System.Text.RegularExpressions;
行 18:       using System.Web;
行 19:       using System.Web.Caching;
行 20:       using System.Web.SessionState;
行 21:       using System.Web.Security;
行 22:       using System.Web.UI;
行 23:       using System.Web.UI.WebControls;
行 24:       using System.Web.UI.HtmlControls;
行 25:       using ASP;
行 26:       
行 27:       
行 28:       [System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
行 29:       public class WebForm1_aspx : lianxi.WebForm1, System.Web.SessionState.IRequiresSessionState {
行 30:           
行 31:           
行 32:           #line 12 "F:\c# projects1\WebForm1.aspx"
行 33:           protected System.Web.UI.HtmlControls.HtmlForm Form1;
行 34:           
行 35:           #line default
行 36:           #line hidden
行 37:           
行 38:           private static bool __initialized = false;
行 39:           
行 40:           private static object __stringResource;
行 41:           
行 42:           private static System.Collections.ArrayList __fileDependencies;
行 43:           
行 44:           public WebForm1_aspx() {
行 45:               System.Collections.ArrayList dependencies;
行 46:               if ((ASP.WebForm1_aspx.__initialized == false)) {
行 47:                   ASP.WebForm1_aspx.__stringResource = System.Web.UI.TemplateControl.ReadStringResource(typeof(ASP.WebForm1_aspx));
行 48:                   dependencies = new System.Collections.ArrayList();
行 49:                   dependencies.Add("F:\\c# projects1\\WebForm1.aspx");
行 50:                   ASP.WebForm1_aspx.__fileDependencies = dependencies;
行 51:                   ASP.WebForm1_aspx.__initialized = true;
行 52:               }
行 53:               this.Server.ScriptTimeout = 30000000;
行 54:           }
行 55:           
行 56:           protected override bool SupportAutoEvents {
行 57:               get {
行 58:                   return false;
行 59:               }
行 60:           }
行 61:           
行 62:           protected ASP.Global_asax ApplicationInstance {
行 63:               get {
行 64:                   return ((ASP.Global_asax)(this.Context.ApplicationInstance));
行 65:               }
行 66:           }
行 67:           
行 68:           public override string TemplateSourceDirectory {
行 69:               get {
行 70:                   return "/lianxi";
行 71:               }
行 72:           }
行 73:           
行 74:           private System.Web.UI.Control __BuildControlForm1() {
行 75:               System.Web.UI.HtmlControls.HtmlForm __ctrl;
行 76:               
行 77:               #line 12 "F:\c# projects1\WebForm1.aspx"
行 78:               __ctrl = new System.Web.UI.HtmlControls.HtmlForm();
行 79:               
行 80:               #line default
行 81:               #line hidden
行 82:               this.Form1 = __ctrl;
行 83:               
行 84:               #line 12 "F:\c# projects1\WebForm1.aspx"
行 85:               __ctrl.ID = "Form1";
行 86:               
行 87:               #line default
行 88:               #line hidden
行 89:               
行 90:               #line 12 "F:\c# projects1\WebForm1.aspx"
行 91:               __ctrl.Method = "post";
行 92:               
行 93:               #line default
行 94:               #line hidden
行 95:               __ctrl.SetRenderMethodDelegate(new System.Web.UI.RenderMethod(this.__RenderForm1));
行 96:               return __ctrl;
行 97:           }
行 98:           
行 99:           private void __RenderForm1(System.Web.UI.HtmlTextWriter __output, System.Web.UI.Control parameterContainer) {
行 100:              __output.Write("\r\n\t\t\t<FONT face=\"MS UI Gothic\" color=\"#66ff33\"></FONT>\r\n\t\t\t\r\n\t\t\t");

#6


行 101:              
行 102:              #line 15 "F:\c# projects1\WebForm1.aspx"
行 103:               If Time < #12:00:00# And Time >= #00:00:00# Then 
行 104:              
行 105:              #line default
行 106:              #line hidden
行 107:              
行 108:              #line 16 "F:\c# projects1\WebForm1.aspx"
行 109:               bgc="silver" 
行 110:              
行 111:              #line default
行 112:              #line hidden
行 113:              __output.Write("\r\n\t\t\tgood ming!\r\n\t\t\t");
行 114:              
行 115:              #line 18 "F:\c# projects1\WebForm1.aspx"
行 116:               ElseIf Time < #19:00:00# And Time >= #12:00:00# Then 
行 117:              
行 118:              #line default
行 119:              #line hidden
行 120:              
行 121:              #line 19 "F:\c# projects1\WebForm1.aspx"
行 122:               bgc="navy" 
行 123:              
行 124:              #line default
行 125:              #line hidden
行 126:              __output.Write("\r\n\t\t\tgood afternoon!\r\n\t\t\t");
行 127:              
行 128:              #line 21 "F:\c# projects1\WebForm1.aspx"
行 129:               Else 
行 130:              
行 131:              #line default
行 132:              #line hidden
行 133:              
行 134:              #line 22 "F:\c# projects1\WebForm1.aspx"
行 135:               bgc="red" 
行 136:              
行 137:              #line default
行 138:              #line hidden
行 139:              __output.Write("\r\n\t\t\tgood evening!\r\n\t\t\t");
行 140:              
行 141:              #line 24 "F:\c# projects1\WebForm1.aspx"
行 142:               End If 
行 143:              
行 144:              #line default
行 145:              #line hidden
行 146:              
行 147:              #line 25 "F:\c# projects1\WebForm1.aspx"
行 148:               End If 
行 149:              
行 150:              #line default
行 151:              #line hidden
行 152:          }
行 153:          
行 154:          private void __BuildControlTree(System.Web.UI.Control __ctrl) {
行 155:              System.Web.UI.IParserAccessor __parser = ((System.Web.UI.IParserAccessor)(__ctrl));
行 156:              
行 157:              #line 1 "F:\c# projects1\WebForm1.aspx"
行 158:              __parser.AddParsedSubObject(this.CreateResourceBasedLiteralControl(0, 442, true));
行 159:              
行 160:              #line default
行 161:              #line hidden
行 162:              
行 163:              #line 1 "F:\c# projects1\WebForm1.aspx"
行 164:              this.__BuildControlForm1();
行 165:              
行 166:              #line default
行 167:              #line hidden
行 168:              
行 169:              #line 1 "F:\c# projects1\WebForm1.aspx"
行 170:              __parser.AddParsedSubObject(this.Form1);
行 171:              
行 172:              #line default
行 173:              #line hidden
行 174:              
行 175:              #line 1 "F:\c# projects1\WebForm1.aspx"
行 176:              __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n\t</body>\r\n</HTML>\r\n"));
行 177:              
行 178:              #line default
行 179:              #line hidden
行 180:          }
行 181:          
行 182:          protected override void FrameworkInitialize() {
行 183:              SetStringResourcePointer(ASP.WebForm1_aspx.__stringResource, 442);
行 184:              this.__BuildControlTree(this);
行 185:              this.FileDependencies = ASP.WebForm1_aspx.__fileDependencies;
行 186:              this.EnableViewStateMac = true;
行 187:              this.Request.ValidateInput();
行 188:          }
行 189:          
行 190:          public override int GetTypeHashCode() {
行 191:              return 1819879018;
行 192:          }
行 193:      }
行 194:  }
行 195:  
 




--------------------------------------------------------------------------------
バージョン情報 : Microsoft .NET Framework バージョン :1.1.4322.573; ASP.NET Version:1.1.4322.573 


这有个在线翻译日文的网站
http://www.excite.co.jp/world/chinese/

#7


to : cfaq(网事随风)

我抄的是一段ASP代码,以为可以直接写在.NET的HTML里面,

不知道现在是哪里出了问题

是我写的ASP代码有问题,还是标识有问题,还是不能这么用啊,请指教

#8



<%
string bgc;
string hello;
DateTime Time = DateTime.Now;
if (Time.Hour < 12 && Time.Hour >= 0)
{
    bgc = "silver";
    hello = "good ming!";//英语要学好啊
}
else if (Time.Hour < 19 && Time.Hour >= 12)
{
    bgc = "navy";
    hello = "good afternoon!";//这还差不多
}
else
{
    bgc = "red";
    hello = "good evening!";
}
%>
<%=hello%>

不过这是asp的风格,一般asp.net没这么写的

#9


是中国人吗?

#10


妈妈的,用日文操作系统不给答
给答的不是人生的

#11


在asp.net的html代码中,改变默认脚本语言为vbscript.
在<head>标签中,改变
<meta name="vs_defaultClientScript" content="JavaScript">

<meta name="vs_defaultClientScript" content="VBScript">

#12


在asp.net的html代码中,改变默认脚本语言为vbscript.
在<head>标签中,改变
<meta name="vs_defaultClientScript" content="JavaScript">

<meta name="vs_defaultClientScript" content="VBScript">

你个家伙,我说不给答就行了,你误导别人就是你的不对了

#13


我是中国人啊,我工作的公司也是中国人开的,只是有时候会接对日的项目而已

#14


脚本问题解决方法已有

#15


我搞点日本猪的钱!

#16


我"改"多

#1


把报错贴上来看看

#2


kao,感觉像是asp里的vbs
怎么可能直接能在.net里用呢

#3


我用的是日文操作系统啊

'/lianxi' アプリケーションでサーバー エラーが発生しました。
--------------------------------------------------------------------------------

コンパイル エラー 
説明 : この要求の処理に必要なリソースのコンパイル中にエラーが発生しました。以下の解析エラーの詳細を確認し、ソース コードに変更を加えてください。 

コンパイラ エラー メッセージ: CS1040: プリプロセッサ ディレクティブは行でスペース以外の最初の文字でなければなりません。

ソース エラー:

 

行 13:  <FONT face="MS UI Gothic" color="#66ff33"></FONT>
行 14: 
行 15:  <% If Time < #12:00:00# And Time >= #00:00:00# Then %>
行 16:  <% bgc="silver" %>
行 17:  good ming!
 

ソース ファイル: F:\c# projects1\WebForm1.aspx    行: 15 



詳しいコンパイラ出力を表示:


C:\WINNT\system32> "c:\winnt\microsoft.net\framework\v1.1.4322\csc.exe" /t:library /utf8output /R:"c:\winnt\microsoft.net\framework\v1.1.4322\temporary asp.net files\lianxi\5cbfd2b2\895e0c0e\-6yr_hbw.dll" /R:"c:\winnt\microsoft.net\framework\v1.1.4322\temporary asp.net files\lianxi\5cbfd2b2\895e0c0e\assembly\dl2\2710c0c6\00192202_a08dc501\lianxi.dll" /R:"c:\winnt\microsoft.net\framework\v1.1.4322\mscorlib.dll" /R:"c:\winnt\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f11d50a3a\system.enterpriseservices.dll" /R:"c:\winnt\assembly\gac\system.data\1.0.5000.0__b77a5c561934e089\system.data.dll" /R:"c:\winnt\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f7f11d50a3a\system.web.mobile.dll" /R:"c:\winnt\assembly\gac\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\system.drawing.dll" /R:"c:\winnt\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e089\system.xml.dll" /R:"c:\winnt\assembly\gac\system.web.services\1.0.5000.0__b03f5f7f11d50a3a\system.web.services.dll" /R:"c:\winnt\assembly\gac\system\1.0.5000.0__b77a5c561934e089\system.dll" /R:"c:\winnt\assembly\gac\system.web\1.0.5000.0__b03f5f7f11d50a3a\system.web.dll" /out:"C:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\lianxi\5cbfd2b2\895e0c0e\b69ndprr.dll" /D:DEBUG /debug+ /optimize- /win32res:"C:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\lianxi\5cbfd2b2\895e0c0e\b69ndprr.res" /warnaserror /w:1  "C:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\lianxi\5cbfd2b2\895e0c0e\b69ndprr.0.cs"


Microsoft(R) Visual C# .NET Compiler version 7.10.3052.4
for Microsoft(R) .NET Framework version 1.1.4322
Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.

F:\c# projects1\WebForm1.aspx(15,24): error CS1040: プリプロセッサ ディレクティブは行でスペース以外の最初の文字でなければなりません。
F:\c# projects1\WebForm1.aspx(18,28): error CS1040: プリプロセッサ ディレクティブは行でスペース以外の最初の文字でなければなりません。

 



#4




<% If Time < #12:00:00# And Time >= #00:00:00# Then %>
<% bgc="silver" %>
good ming!
<% ElseIf Time < #19:00:00# And Time >= #12:00:00# Then %>
<% bgc="navy" %>
good afternoon!
<% Else %>
<% bgc="red" %>
good evening!
<% End If %>
改成
<%
//string bgc;
string hello;
DateTime Time = DateTime.Now;
if (Time.Hour < 12 && Time.Hour >= 0)
{
    bgc = "silver";
    hello = "good ming!";//英语要学好啊
}
else if (Time.Hour < 19 && Time.Hour >= 12)
{
    bgc = "navy";
    hello = "good afternoon!";//这还差不多
}
else
{
    bgc = "red";
    hello = "good evening!";
}
%>
<%=hello%>

典型的asp风格,ASP.NET没这么写的

#5


完全なコンパイル ソースを表示:


行 1:    //------------------------------------------------------------------------------
行 2:    // <autogenerated>
行 3:    //     This code was generated by a tool.
行 4:    //     Runtime Version: 1.1.4322.573
行 5:    //
行 6:    //     Changes to this file may cause incorrect behavior and will be lost if 
行 7:    //     the code is regenerated.
行 8:    // </autogenerated>
行 9:    //------------------------------------------------------------------------------
行 10:   
行 11:   namespace ASP {
行 12:       using System;
行 13:       using System.Collections;
行 14:       using System.Collections.Specialized;
行 15:       using System.Configuration;
行 16:       using System.Text;
行 17:       using System.Text.RegularExpressions;
行 18:       using System.Web;
行 19:       using System.Web.Caching;
行 20:       using System.Web.SessionState;
行 21:       using System.Web.Security;
行 22:       using System.Web.UI;
行 23:       using System.Web.UI.WebControls;
行 24:       using System.Web.UI.HtmlControls;
行 25:       using ASP;
行 26:       
行 27:       
行 28:       [System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
行 29:       public class WebForm1_aspx : lianxi.WebForm1, System.Web.SessionState.IRequiresSessionState {
行 30:           
行 31:           
行 32:           #line 12 "F:\c# projects1\WebForm1.aspx"
行 33:           protected System.Web.UI.HtmlControls.HtmlForm Form1;
行 34:           
行 35:           #line default
行 36:           #line hidden
行 37:           
行 38:           private static bool __initialized = false;
行 39:           
行 40:           private static object __stringResource;
行 41:           
行 42:           private static System.Collections.ArrayList __fileDependencies;
行 43:           
行 44:           public WebForm1_aspx() {
行 45:               System.Collections.ArrayList dependencies;
行 46:               if ((ASP.WebForm1_aspx.__initialized == false)) {
行 47:                   ASP.WebForm1_aspx.__stringResource = System.Web.UI.TemplateControl.ReadStringResource(typeof(ASP.WebForm1_aspx));
行 48:                   dependencies = new System.Collections.ArrayList();
行 49:                   dependencies.Add("F:\\c# projects1\\WebForm1.aspx");
行 50:                   ASP.WebForm1_aspx.__fileDependencies = dependencies;
行 51:                   ASP.WebForm1_aspx.__initialized = true;
行 52:               }
行 53:               this.Server.ScriptTimeout = 30000000;
行 54:           }
行 55:           
行 56:           protected override bool SupportAutoEvents {
行 57:               get {
行 58:                   return false;
行 59:               }
行 60:           }
行 61:           
行 62:           protected ASP.Global_asax ApplicationInstance {
行 63:               get {
行 64:                   return ((ASP.Global_asax)(this.Context.ApplicationInstance));
行 65:               }
行 66:           }
行 67:           
行 68:           public override string TemplateSourceDirectory {
行 69:               get {
行 70:                   return "/lianxi";
行 71:               }
行 72:           }
行 73:           
行 74:           private System.Web.UI.Control __BuildControlForm1() {
行 75:               System.Web.UI.HtmlControls.HtmlForm __ctrl;
行 76:               
行 77:               #line 12 "F:\c# projects1\WebForm1.aspx"
行 78:               __ctrl = new System.Web.UI.HtmlControls.HtmlForm();
行 79:               
行 80:               #line default
行 81:               #line hidden
行 82:               this.Form1 = __ctrl;
行 83:               
行 84:               #line 12 "F:\c# projects1\WebForm1.aspx"
行 85:               __ctrl.ID = "Form1";
行 86:               
行 87:               #line default
行 88:               #line hidden
行 89:               
行 90:               #line 12 "F:\c# projects1\WebForm1.aspx"
行 91:               __ctrl.Method = "post";
行 92:               
行 93:               #line default
行 94:               #line hidden
行 95:               __ctrl.SetRenderMethodDelegate(new System.Web.UI.RenderMethod(this.__RenderForm1));
行 96:               return __ctrl;
行 97:           }
行 98:           
行 99:           private void __RenderForm1(System.Web.UI.HtmlTextWriter __output, System.Web.UI.Control parameterContainer) {
行 100:              __output.Write("\r\n\t\t\t<FONT face=\"MS UI Gothic\" color=\"#66ff33\"></FONT>\r\n\t\t\t\r\n\t\t\t");

#6


行 101:              
行 102:              #line 15 "F:\c# projects1\WebForm1.aspx"
行 103:               If Time < #12:00:00# And Time >= #00:00:00# Then 
行 104:              
行 105:              #line default
行 106:              #line hidden
行 107:              
行 108:              #line 16 "F:\c# projects1\WebForm1.aspx"
行 109:               bgc="silver" 
行 110:              
行 111:              #line default
行 112:              #line hidden
行 113:              __output.Write("\r\n\t\t\tgood ming!\r\n\t\t\t");
行 114:              
行 115:              #line 18 "F:\c# projects1\WebForm1.aspx"
行 116:               ElseIf Time < #19:00:00# And Time >= #12:00:00# Then 
行 117:              
行 118:              #line default
行 119:              #line hidden
行 120:              
行 121:              #line 19 "F:\c# projects1\WebForm1.aspx"
行 122:               bgc="navy" 
行 123:              
行 124:              #line default
行 125:              #line hidden
行 126:              __output.Write("\r\n\t\t\tgood afternoon!\r\n\t\t\t");
行 127:              
行 128:              #line 21 "F:\c# projects1\WebForm1.aspx"
行 129:               Else 
行 130:              
行 131:              #line default
行 132:              #line hidden
行 133:              
行 134:              #line 22 "F:\c# projects1\WebForm1.aspx"
行 135:               bgc="red" 
行 136:              
行 137:              #line default
行 138:              #line hidden
行 139:              __output.Write("\r\n\t\t\tgood evening!\r\n\t\t\t");
行 140:              
行 141:              #line 24 "F:\c# projects1\WebForm1.aspx"
行 142:               End If 
行 143:              
行 144:              #line default
行 145:              #line hidden
行 146:              
行 147:              #line 25 "F:\c# projects1\WebForm1.aspx"
行 148:               End If 
行 149:              
行 150:              #line default
行 151:              #line hidden
行 152:          }
行 153:          
行 154:          private void __BuildControlTree(System.Web.UI.Control __ctrl) {
行 155:              System.Web.UI.IParserAccessor __parser = ((System.Web.UI.IParserAccessor)(__ctrl));
行 156:              
行 157:              #line 1 "F:\c# projects1\WebForm1.aspx"
行 158:              __parser.AddParsedSubObject(this.CreateResourceBasedLiteralControl(0, 442, true));
行 159:              
行 160:              #line default
行 161:              #line hidden
行 162:              
行 163:              #line 1 "F:\c# projects1\WebForm1.aspx"
行 164:              this.__BuildControlForm1();
行 165:              
行 166:              #line default
行 167:              #line hidden
行 168:              
行 169:              #line 1 "F:\c# projects1\WebForm1.aspx"
行 170:              __parser.AddParsedSubObject(this.Form1);
行 171:              
行 172:              #line default
行 173:              #line hidden
行 174:              
行 175:              #line 1 "F:\c# projects1\WebForm1.aspx"
行 176:              __parser.AddParsedSubObject(new System.Web.UI.LiteralControl("\r\n\t</body>\r\n</HTML>\r\n"));
行 177:              
行 178:              #line default
行 179:              #line hidden
行 180:          }
行 181:          
行 182:          protected override void FrameworkInitialize() {
行 183:              SetStringResourcePointer(ASP.WebForm1_aspx.__stringResource, 442);
行 184:              this.__BuildControlTree(this);
行 185:              this.FileDependencies = ASP.WebForm1_aspx.__fileDependencies;
行 186:              this.EnableViewStateMac = true;
行 187:              this.Request.ValidateInput();
行 188:          }
行 189:          
行 190:          public override int GetTypeHashCode() {
行 191:              return 1819879018;
行 192:          }
行 193:      }
行 194:  }
行 195:  
 




--------------------------------------------------------------------------------
バージョン情報 : Microsoft .NET Framework バージョン :1.1.4322.573; ASP.NET Version:1.1.4322.573 


这有个在线翻译日文的网站
http://www.excite.co.jp/world/chinese/

#7


to : cfaq(网事随风)

我抄的是一段ASP代码,以为可以直接写在.NET的HTML里面,

不知道现在是哪里出了问题

是我写的ASP代码有问题,还是标识有问题,还是不能这么用啊,请指教

#8



<%
string bgc;
string hello;
DateTime Time = DateTime.Now;
if (Time.Hour < 12 && Time.Hour >= 0)
{
    bgc = "silver";
    hello = "good ming!";//英语要学好啊
}
else if (Time.Hour < 19 && Time.Hour >= 12)
{
    bgc = "navy";
    hello = "good afternoon!";//这还差不多
}
else
{
    bgc = "red";
    hello = "good evening!";
}
%>
<%=hello%>

不过这是asp的风格,一般asp.net没这么写的

#9


是中国人吗?

#10


妈妈的,用日文操作系统不给答
给答的不是人生的

#11


在asp.net的html代码中,改变默认脚本语言为vbscript.
在<head>标签中,改变
<meta name="vs_defaultClientScript" content="JavaScript">

<meta name="vs_defaultClientScript" content="VBScript">

#12


在asp.net的html代码中,改变默认脚本语言为vbscript.
在<head>标签中,改变
<meta name="vs_defaultClientScript" content="JavaScript">

<meta name="vs_defaultClientScript" content="VBScript">

你个家伙,我说不给答就行了,你误导别人就是你的不对了

#13


我是中国人啊,我工作的公司也是中国人开的,只是有时候会接对日的项目而已

#14


脚本问题解决方法已有

#15


我搞点日本猪的钱!

#16


我"改"多