⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 general.aspx

📁 Other things about csharp. you could learn from this
💻 ASPX
字号:
<%@Page Language="C#" %>
<%@ Import Namespace="System.IO" %>
<%

	string[] items;

	items = Directory.GetFileSystemEntries("C:\\");

	foreach (string item in items)
		Response.Write( item + "<BR>" );

	Response.Write("<br/>Those beginning with h<br/>");
	items = Directory.GetFileSystemEntries("C:\\","h*");

	foreach (string item in items)
		Response.Write( item + "<BR>" );

%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -