您好,登錄后才能下訂單哦!
這篇文章主要介紹“ASP.NET基礎語法有哪些”,在日常操作中,相信很多人在ASP.NET基礎語法有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”ASP.NET基礎語法有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
變量聲明
int x; String s; String s1, s2; Object o; Object obj = new Object(); public String name;
語句
Response.Write("foo");
注釋
// 這是單行注釋 /* 這是 多 行 注釋*/
訪問索引屬性
String s = Request.QueryString["Name"]; String value = Request.Cookies["key"];
聲明索引屬性
// Default Indexed Property public String this[String name] { get { return (String) lookuptable[name]; } }
聲明簡單屬性
public String name { get { ... return ...; } set { ... = value; } }
聲明和使用枚舉
// Declare the Enumeration public enum MessageSize { Small = 0, Medium = 1, Large = 2 } // Create a Field or Property public MessageSize msgsize; // Assign to the property using the Enumeration values msgsize = Small;
遍歷集合
foreach ( String s in coll ) { ... }
聲明和使用方法
// Declare a void return function void voidfunction() { ... } // Declare a function that returns a value String stringfunction() { ... return (String) val; } // Declare a function that takes and returns values String parmfunction(String a, String b) { ... return (String) (a + b); } // Use the Functions voidfunction(); String s1 = stringfunction(); String s2 = parmfunction("Hello", "World!");
定制屬性
// Stand-alone attribute [STAThread] // Attribute with parameters [DllImport("ADVAPI32.DLL")] // Attribute with named parameters [DllImport("KERNEL32.DLL", CharSet=CharSet.Auto)]
數組
String[] a = new String[3]; a[0] = "1"; a[1] = "2"; a[2] = "3"; String[][] a = new String[3][3]; a[0][0] = "1"; a[1][0] = "2"; a[2][0] = "3";
初始化
String s = "Hello World"; int i = 1; double[] a = { 3.00, 4.00, 5.00 };
ASP.NET基礎語法:語句
If 語句
if (Request.QueryString != null) { ... }
Case 語句
switch (FirstName) { case "John" : ... break; case "Paul" : ... break; case "Ringo" : ... break; default: ... break; }
For 循環
for (int i=0; i<3; i++) a(i) = "test";
While 循環
int i = 0; while (i<3) { Console.WriteLine(i.ToString()); i += 1; }
異常處理
try { // Code that throws exceptions } catch(OverflowException e) { // Catch a specific exception } catch(Exception e) { // Catch the generic exceptions } finally { // Execute some cleanup code }
字符串連接
// Using Strings String s1; String s2 = "hello"; s2 += " world"; s1 = s2 + " !!!"; // Using StringBuilder class for performance StringBuilder s3 = new StringBuilder(); s3.Append("hello"); s3.Append(" world"); s3.Append(" !!!");
事件處理委派
void MyButton_Click(Object sender, EventArgs E) { ... }
聲明事件
// Create a public event public event EventHandler MyEvent; // Create a method for firing the event protected void OnMyEvent(EventArgs e) { MyEvent(this, e); }
向事件增加或移除事件處理
Control.Change += new EventHandler(this.ChangeEventHandler); Control.Change -= new EventHandler(this.ChangeEventHandler);
構造
MyObject obj = (MyObject)Session["Some Value"]; IMyObject iObj = obj;
轉換
int i = 3; String s = i.ToString(); double d = Double.Parse(s);
帶有繼承的類定義
using System; namespace MySpace { public class Foo : Bar { int x; public Foo() { x = 4; } public void Add(int x) { this.x += x; } override public int GetNum() { return x; } } } // csc /out:librarycs.dll /t:library // library.cs
實現接口
public class MyClass : IEnumerable { ... IEnumerator IEnumerable.GetEnumerator() { ... } }
帶有Main方法的類定義
using System; public class ConsoleCS { public ConsoleCS() { Console.WriteLine("Object Created"); } public static void Main (String[] args) { Console.WriteLine("Hello World"); ConsoleCS ccs = new ConsoleCS(); } } // csc /out:consolecs.exe /t:exe console.cs
標準模板
using System; public class Module { public static void Main (String[] args) { Console.WriteLine("Hello World"); } } // csc /out:consolecs.exe /t:exe console.cs
到此,關于“ASP.NET基礎語法有哪些”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。