ASP.NET Web FormµÄ´¦Àí²½Öè
ÔÚ·þÎñÆ÷¶Ë£¬´¦ÀíÒ»¸öASP.NET Web FormÐèÒª¼¸¸ö²½Ö裬ÔÚÿ¸ö²½Öè¶¼»áÒý·¢¸÷ÖÖʼþ£¬Õâ¾ÍÔÊÐíÄã°ÑÍøÒ³²åÈëµ½ÈÎÒ»²½ÖèµÄ´¦ÀíÁ÷Öв¢ÇÒÏìÓ¦ÈκÎÄãËùÆÚÍûµÄ´¦Àí¡£
ÒÔÏÂÊÇASP.NETÍøÒ³´¦ÀíÁ÷ÖеöÖ÷Òª²½Öè
1.ÍøÒ³¿ò¼Ü³õʼ»¯
2.Óû§´úÂë³õʼ»¯
3.ÑéÖ¤
4.ʼþ´¦Àí
5.×Ô¶¯Êý¾Ý°î¶¨
6.ÇåÀí
Ïà¹ØÎĵµ£º
Asp.Net¹¹¼Ü(HttpÇëÇó´¦ÀíÁ÷³Ì) - Part.1
ÒýÑÔ
ÎÒ²éÔĹý²»ÉÙAsp.NetµÄÊé¼®£¬·¢ÏÖ´ó¶àÊý×÷Õß¶¼ÊÇÕ¾ÔÚÒ»¸ö±È½Ï¸ßµÄ²ã´ÎÉϽ²½âAsp.Net¡£ËûÃÇÄÍÐÄ¡¢Ï¸ÖµظæËßÄãÈçºÎÒ»²½²½ÍϷſؼþ¡¢ÉèÖÿؼþÊôÐÔ¡¢±àдCodeBehind´úÂ룬ÒÔʵÏÖij¸öÌØ¶¨µÄ¹¦ÄÜ¡£
ÕâÖÖ×ö·¨£¬Êµ¼ÊÉÏÊǻشðÁË“ÈçºÎÈ¥×ö”µÄÎÊÌ⣬ȴûÓлشð“ÎªÊ ......
string[] files = Directory.GetDirectories(Server.MapPath("Themes/"));
ÏÈÉùÃ÷ÁËÒ»¸ö×Ö·ûÊý×飬mapPath·½·¨µÃµ½µÄÊÇÒ»¸ö¾ø¶Ô·¾¶¡£
ÒòΪGetFiles·µ»ØµÄÊÇÒ»¸östring[]Êý×飬ËùÒÔÓà filesÀ´½ÓÊÕËü¡£
È»ºóÎÒÃÇÔÚÓÃÒ»¸öforeachÑ»·À´±éÀúÕâ¸öÊý×飬ȡ³öËùÓÐÖµ¡£
foreach (string file in files)
{
Response.W ......
aspx:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ArticlePage.aspx.cs" Inherits="ArticlePage" %>
<!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" > ......
Cascading drop down lists is a really nice feature for web developers. I thought it was time to write an article on how to do this using ASP.NET and jQuery. Well here’s one way of doing it. Before we get started, this example uses the latest version of jQuery which is 1.3.2.&n ......