ASP.NET程序中常用代码汇总(四)

简介:

31. 当文件在不同目录下,需要获取数据库连接字符串(如果连接字符串放在Web.config,然后在Global.asax中初始化)
在Application_Start中添加以下代码:
None.gif Application[ " ConnStr " ] = this .Context.Request.PhysicalApplicationPath + ConfigurationSettings.
None.gif   AppSettings[
" ConnStr " ].ToString();
None.gif
32.变量.ToString() 
字符型转换 转为字符串 
None.gif 12345 .ToString( " n " );  // 生成 12,345.00 
None.gif
12345 .ToString( " C " );  // 生成 ¥12,345.00 
None.gif
12345 .ToString( " e " );  // 生成 1.234500e+004 
None.gif
12345 .ToString( " f4 " );  // 生成 12345.0000 
None.gif
12345 .ToString( " x " );  // 生成 3039 (16进制) 
None.gif
12345 .ToString( " p " );  // 生成 1,234,500.00% 
None.gif
33.变量.Substring(参数1,参数2); 
截取字串的一部分,参数1为左起始位数,参数2为截取几位。 如:string s1 = str.Substring(0,2); 
34.在自己的网站上登陆其他网站:(如果你的页面是通过嵌套方式的话,因为一个页面只能有一个FORM,这时可以导向另外一个页面再提交登陆信息) 
None.gif <SCRIPT language="javascript"> 
None.gif<!-- 
None.gif function gook(pws) 
None.gif { 
None.gif  frm.submit(); 
None.gif } 
None.gif//--> 
None.gif
None.gif</SCRIPT> <body leftMargin="0" topMargin="0" onload="javascript:gook()" marginwidth="0" marginheight="0"> 
None.gif<form name="frm" action=" http://220.194.55.68:6080/login.php?retid=7259 " method="post"> 
None.gif<tr> 
None.gif<td>
None.gif<input id="f_user" type="hidden" size="1" name="f_user" runat="server">
None.gif<input id="f_domain" type="hidden" size="1" name="f_domain" runat="server">
None.gif<input class="box" id="f_pass" type="hidden" size="1" name="pwshow" runat="server"> 
None.gif
None.gif<INPUT id="lng" type="hidden" maxLength="20" size="1" value="5" name="lng">
None.gif<INPUT id="tem" type="hidden" size="1" value="2" name="tem"> 
None.gif
None.gif</td> 
None.gif
None.gif</tr> 
None.gif
None.gif</form> 
None.gif
文本框的名称必须是你要登陆的网页上的名称,如果源码不行可以用vsniffer 看看。 
  下面是获取用户输入的登陆信息的代码: 
None.gif string name; 
None.gifname=Request.QueryString["EmailName"]; 
None.gif
None.giftry 
None.gif
None.gif int a=name.IndexOf("@",0,name.Length); 
None.gif f_user.Value=name.Substring(0,a); 
None.gif f_domain.Value=name.Substring(a+1,name.Length-(a+1)); 
None.gif f_pass.Value=Request.QueryString["Psw"]; 
None.gif
None.gif
None.gifcatch 
None.gif
None.gif Script.Alert("错误的邮箱!"); 
None.gif Server.Transfer("index.aspx"); 
None.gif}
None.gif
35.警告窗口
ExpandedBlockStart.gif /// <summary> 
InBlock.gif 
/// 服务器端弹出alert对话框 
InBlock.gif 
/// </summary> 
InBlock.gif 
/// <param name="str_Message">提示信息,例子:"不能为空!"</param> 
ExpandedBlockEnd.gif 
/// <param name="page">Page类</param> 

None.gif   public   void  Alert( string  str_Message,Page page) 
ExpandedBlockStart.gif 

InBlock.gif  page.RegisterStartupScript(
"","<script>alert('"+str_Message+"');</script>"); 
ExpandedBlockEnd.gif }
 
None.gif
36.重载此警告窗口,使某控件获得焦点
ExpandedBlockStart.gif /// <summary> 
InBlock.gif 
/// 服务器端弹出alert对话框,并使控件获得焦点 
InBlock.gif 
/// </summary> 
InBlock.gif 
/// <param name="str_Ctl_Name">获得焦点控件Id值,比如:txt_Name</param> 
InBlock.gif 
/// <param name="str_Message">提示信息,例子:"请输入您姓名!"</param> 
ExpandedBlockEnd.gif 
/// <param name="page">Page类</param> 

None.gif   public   void  Alert( string  str_Ctl_Name, string  str_Message,Page page) 
ExpandedBlockStart.gif 

InBlock.gif  page.RegisterStartupScript(
"","<script>alert('"+str_Message+"');document.forms(0)."+str_Ctl_Name+".focus(); document.forms(0)."+str_Ctl_Name+".select();</script>"); 
ExpandedBlockEnd.gif }
 
None.gif
37.确认对话框 
ExpandedBlockStart.gif /// <summary> 
InBlock.gif 
/// 服务器端弹出confirm对话框 
InBlock.gif 
/// </summary> 
InBlock.gif 
/// <param name="str_Message">提示信息,例子:"您是否确认删除!"</param> 
InBlock.gif 
/// <param name="btn">隐藏Botton按钮Id值,比如:btn_Flow</param> 
ExpandedBlockEnd.gif 
/// <param name="page">Page类</param> 

None.gif   public   void  Confirm( string  str_Message, string  btn,Page page) 
ExpandedBlockStart.gif 

InBlock.gif  page.RegisterStartupScript(
"","<script> if (confirm('"+str_Message+"')==true){document.forms(0)."+btn+".click();}</script>"); 
ExpandedBlockEnd.gif }
 
None.gif
38.重载确认对话框,点击确定触发一个隐藏按钮事件,点击取消触发一个隐藏按钮事件
ExpandedBlockStart.gif /// <summary> 
InBlock.gif 
///  服务器端弹出confirm对话框,询问用户准备转向那些操作,包括“确定”和“取消”时的操作 
InBlock.gif 
/// </summary> 
InBlock.gif 
/// <param name="str_Message">提示信息,比如:"成功增加数据,单击\"确定\"按钮填写流程,单击\"取消\"修改数据"</param> 
InBlock.gif 
/// <param name="btn_Redirect_Flow">"确定"按钮id值</param> 
InBlock.gif 
/// <param name="btn_Redirect_Self">"取消"按钮id值</param> 
ExpandedBlockEnd.gif 
/// <param name="page">Page类</param> 

None.gif   public   void  Confirm( string  str_Message, string  btn_Redirect_Flow, string  btn_Redirect_Self,Page page) 
ExpandedBlockStart.gif 

InBlock.gif  page.RegisterStartupScript(
"","<script> if (confirm('"+str_Message+"')==true){document.forms(0)."+btn_Redirect_Flow+".click();}else{document.forms(0)."+btn_Redirect_Self+".click();}</script>"); 
ExpandedBlockEnd.gif }
 
None.gif
39.获得焦点 
ExpandedBlockStart.gif /// <summary> 
InBlock.gif 
/// 使控件获得焦点 
InBlock.gif 
/// </summary> 
InBlock.gif 
/// <param name="str_Ctl_Name">获得焦点控件Id值,比如:txt_Name</param> 
ExpandedBlockEnd.gif 
/// <param name="page">Page类</param> 

None.gif   public   void  GetFocus( string  str_Ctl_Name,Page page) 
ExpandedBlockStart.gif 

InBlock.gif  page.RegisterStartupScript(
"","<script>document.forms(0)."+str_Ctl_Name+".focus(); document.forms(0)."+str_Ctl_Name+".select();</script>"); 
ExpandedBlockEnd.gif }
 
None.gif
40.子窗体返回主窗体
ExpandedBlockStart.gif   ///<summary> 
InBlock.gif 
///名称:redirect 
InBlock.gif 
///功能:子窗体返回主窗体 
InBlock.gif 
///参数:url 
InBlock.gif 
///返回值:空 
ExpandedBlockEnd.gif 
///</summary> 

None.gif   public   void  redirect( string  url,Page page) 
ExpandedBlockStart.gif 

InBlock.gif  
if ( Session["IfDefault"]!=(object)"Default"
ExpandedSubBlockStart.gif  
{     
InBlock.gif   page.RegisterStartupScript(
"","<script>window.top.document.location.href='"+url+"';</script>"); 
ExpandedSubBlockEnd.gif  }
 
ExpandedBlockEnd.gif }
 
None.gif

整理了一些常用的.NET代码,贴出来供大家参考,并希望我们一起搜集更多的内容。

一、为GridView添加索引列
None.gif < asp:TemplateField HeaderText = " ID " >
None.gif                            
< ItemTemplate >
None.gif                                
<% # Container.DataItemIndex  + 1   %>
None.gif                            
</ ItemTemplate >
None.gif
</ asp:TemplateField >

二、批量删除列
模板列代码:
None.gif < asp:TemplateField HeaderText = " 选择 " >
None.gif                            
< ItemTemplate >
None.gif                                
< asp:CheckBox ID = " chkSelect "  runat = " server "   />
None.gif                            
</ ItemTemplate >
None.gif
</ asp:TemplateField >
全选:
None.gif for  ( int  i  =   0 ; i  <  gv.Rows.Count; i ++ )
ExpandedBlockStart.gif        
{
InBlock.gif            CheckBox chkSelect 
= (CheckBox)gv.Rows[i].FindControl("chkSelect");
InBlock.gif            chkSelect.Checked 
= true;
ExpandedBlockEnd.gif        }
反选:
None.gif for  ( int  i  =   0 ; i  <  gv.Rows.Count; i ++ )
ExpandedBlockStart.gif        
{
InBlock.gif            CheckBox chkSelect 
= (CheckBox)gv.Rows[i].FindControl("chkSelect");
InBlock.gif            chkSelect.Checked 
= !chkSelect.Checked;
ExpandedBlockEnd.gif        }
取消选择:
None.gif for  ( int  i  =   0 ; i  <  gv.Rows.Count; i ++ )
ExpandedBlockStart.gif        
{
InBlock.gif            CheckBox chkSelect 
= (CheckBox)gv.Rows[i].FindControl("chkSelect");
InBlock.gif            chkSelect.Checked 
= false;
ExpandedBlockEnd.gif        }
删除:
None.gif for  ( int  i  =   0 ; i  <  gv.Rows.Count; i ++ )
ExpandedBlockStart.gif        
{
InBlock.gif            CheckBox chkSelect 
= (CheckBox)gv.Rows[i].FindControl("chkSelect");
InBlock.gif            
if (chkSelect.Checked)
ExpandedSubBlockStart.gif            
{
InBlock.gif                
//删除记录
ExpandedSubBlockEnd.gif
            }

ExpandedBlockEnd.gif        }

三、删除表格选定记录
None.gif int  id  =  ( int )MyDataGrid.DataKeys[e.Item.ItemIndex];  // 在调用前必须指定DataKeyNames属性为要获取
None.gif

None.gif的主键。
None.gif
string  deleteCmd  =   " DELETE from Employee where emp_id =  "   +  intEmpID.ToString();

四、为按钮添加确认对话框
None.gif button.Attributes.Add( " onclick " , " return confirm(’确认?’) " ); 

五、点击表格行链接另一页

None.gif private   void  grdCustomer_ItemDataBound( object  sender, 
None.gif
None.gifSystem.Web.UI.WebControls.DataGridItemEventArgs e) 
ExpandedBlockStart.gif

InBlock.gif 
//点击表格打开 
InBlock.gif
 if (e.Item.ItemType == ListItemType.Item e.Item.ItemType == ListItemType.AlternatingItem) 
InBlock.gif  e.Item.Attributes.Add(
"onclick","window.open(’Default.aspx?id=" + e.Item.Cells[0].Text + "
InBlock.gif

InBlock.gif’);
"); 
ExpandedBlockEnd.gif
}
 


六、超连接列传递参数
None.gif <asp:HyperLinkColumn Target = " _blank "  headertext = " ID号 "  DataTextField = " id "  
None.gif
None.gifNavigateUrl
= " aaa.aspx?id=’ 
None.gif
 < % # DataBinder.Eval(Container.DataItem,  " 数据字段1 " ) % >’  &  name = ’< % # DataBinder.Eval
None.gif
None.gif(Container.DataItem, 
" 数据字段2 " ) % >’  / > 

七、绑定日期格式
None.gif e.items.cell[ " time " ].text = DateTime.Parse(e.items.cell[ " time " ].text.ToString( " yyyy-MM-dd " )) 

八、统一捕获异常 Global.asax中:
ExpandedBlockStart.gif protected   void  Application_Error(Object sender, EventArgs e) 
InBlock.gif
if (Server.GetLastError() is HttpUnhandledException) 
InBlock.gifServer.Transfer(
"MyErrorPage.aspx"); 
InBlock.gif
InBlock.gif
//编写添加到日志的代码Log.add();
ExpandedBlockEnd.gif
}
 
None.gif

九、自定义异常处理
None.gif using  System; 
None.gif
using  System.Diagnostics; 
None.gif
None.gif
namespace  MyAppException 
ExpandedBlockStart.gif

ExpandedSubBlockStart.gif 
/// <summary> 
InBlock.gif 
/// 从系统异常类ApplicationException继承的应用程序异常处理类。 
InBlock.gif 
/// 自动将异常内容记录到Windows NT/2000的应用程序日志 
ExpandedSubBlockEnd.gif 
/// </summary> 

InBlock.gif public class AppException:System.ApplicationException 
ExpandedSubBlockStart.gif 

InBlock.gif  
public AppException() 
ExpandedSubBlockStart.gif  

InBlock.gif   
if (ApplicationConfiguration.EventLogEnabled)LogEvent("出现一个未知错误。"); 
ExpandedSubBlockEnd.gif  }
 
InBlock.gif
InBlock.gif 
public AppException(string message) 
ExpandedSubBlockStart.gif 

InBlock.gif  LogEvent(message); 
ExpandedSubBlockEnd.gif }
 
InBlock.gif
InBlock.gif 
public AppException(string message,Exception innerException) 
ExpandedSubBlockStart.gif 

InBlock.gif  LogEvent(message); 
InBlock.gif  
if (innerException != null
ExpandedSubBlockStart.gif  

InBlock.gif   LogEvent(innerException.Message); 
ExpandedSubBlockEnd.gif  }
 
ExpandedSubBlockEnd.gif }
 
InBlock.gif
InBlock.gif 
//日志记录类 
InBlock.gif
 using System; 
InBlock.gif 
using System.Configuration; 
InBlock.gif 
using System.Diagnostics; 
InBlock.gif 
using System.IO; 
InBlock.gif 
using System.Text; 
InBlock.gif 
using System.Threading; 
InBlock.gif
InBlock.gif 
namespace MyEventLog 
ExpandedSubBlockStart.gif 

ExpandedSubBlockStart.gif  
/// <summary> 
InBlock.gif  
/// 事件日志记录类,提供事件日志记录支持 
InBlock.gif  
/// <remarks> 
InBlock.gif  
/// 定义了4个日志记录方法 (error, warning, info, trace) 
InBlock.gif  
/// </remarks> 
ExpandedSubBlockEnd.gif  
/// </summary> 

InBlock.gif  public class ApplicationLog 
ExpandedSubBlockStart.gif  

ExpandedSubBlockStart.gif   
/// <summary> 
InBlock.gif   
/// 将错误信息记录到Win2000/NT事件日志中 
InBlock.gif   
/// <param name="message">需要记录的文本信息</param> 
ExpandedSubBlockEnd.gif   
/// </summary> 

InBlock.gif   public static void WriteError(String message) 
ExpandedSubBlockStart.gif   

InBlock.gif    WriteLog(TraceLevel.Error, message); 
ExpandedSubBlockEnd.gif   }
 
InBlock.gif
ExpandedSubBlockStart.gif   
/// <summary> 
InBlock.gif   
/// 将警告信息记录到Win2000/NT事件日志中 
InBlock.gif   
/// <param name="message">需要记录的文本信息</param> 
ExpandedSubBlockEnd.gif   
/// </summary> 

InBlock.gif   public static void WriteWarning(String message) 
ExpandedSubBlockStart.gif   

InBlock.gif    WriteLog(TraceLevel.Warning, message);   
ExpandedSubBlockEnd.gif   }
 
InBlock.gif
ExpandedSubBlockStart.gif   
/// <summary> 
InBlock.gif   
/// 将提示信息记录到Win2000/NT事件日志中 
InBlock.gif   
/// <param name="message">需要记录的文本信息</param> 
ExpandedSubBlockEnd.gif   
/// </summary> 

InBlock.gif   public static void WriteInfo(String message) 
ExpandedSubBlockStart.gif   

InBlock.gif    WriteLog(TraceLevel.Info, message); 
ExpandedSubBlockEnd.gif   }
 
ExpandedSubBlockStart.gif   
/// <summary> 
InBlock.gif   
/// 将跟踪信息记录到Win2000/NT事件日志中 
InBlock.gif   
/// <param name="message">需要记录的文本信息</param> 
ExpandedSubBlockEnd.gif   
/// </summary> 

InBlock.gif   public static void WriteTrace(String message) 
ExpandedSubBlockStart.gif   

InBlock.gif    WriteLog(TraceLevel.Verbose, message); 
ExpandedSubBlockEnd.gif   }
 
InBlock.gif
ExpandedSubBlockStart.gif   
/// <summary> 
InBlock.gif   
/// 格式化记录到事件日志的文本信息格式 
InBlock.gif   
/// <param name="ex">需要格式化的异常对象</param> 
InBlock.gif   
/// <param name="catchInfo">异常信息标题字符串.</param> 
InBlock.gif   
/// <retvalue> 
InBlock.gif   
/// <para>格式后的异常信息字符串,包括异常内容和跟踪堆栈.</para> 
InBlock.gif   
/// </retvalue> 
ExpandedSubBlockEnd.gif   
/// </summary> 

InBlock.gif   public static String FormatException(Exception ex, String catchInfo) 
ExpandedSubBlockStart.gif   

InBlock.gif    StringBuilder strBuilder 
= new StringBuilder(); 
InBlock.gif    
if (catchInfo != String.Empty) 
ExpandedSubBlockStart.gif    

InBlock.gif     strBuilder.Append(catchInfo).Append(
"\r\n"); 
ExpandedSubBlockEnd.gif    }
 
InBlock.gif    strBuilder.Append(ex.Message).Append(
"\r\n").Append(ex.StackTrace); 
InBlock.gif    
return strBuilder.ToString(); 
ExpandedSubBlockEnd.gif   }
 
InBlock.gif
ExpandedSubBlockStart.gif   
/// <summary> 
InBlock.gif   
/// 实际事件日志写入方法 
InBlock.gif   
/// <param name="level">要记录信息的级别(error,warning,info,trace).</param> 
InBlock.gif   
/// <param name="messageText">要记录的文本.</param> 
ExpandedSubBlockEnd.gif   
/// </summary> 

InBlock.gif   private static void WriteLog(TraceLevel level, String messageText) 
ExpandedSubBlockStart.gif   

InBlock.gif    
try 
ExpandedSubBlockStart.gif    

InBlock.gif     EventLogEntryType LogEntryType; 
InBlock.gif     
switch (level) 
ExpandedSubBlockStart.gif     

InBlock.gif      
case TraceLevel.Error: 
InBlock.gif       LogEntryType 
= EventLogEntryType.Error; 
InBlock.gif       
break
InBlock.gif      
case TraceLevel.Warning: 
InBlock.gif       LogEntryType 
= EventLogEntryType.Warning; 
InBlock.gif       
break
InBlock.gif      
case TraceLevel.Info: 
InBlock.gif       LogEntryType 
= EventLogEntryType.Information; 
InBlock.gif       
break
InBlock.gif      
case TraceLevel.Verbose: 
InBlock.gif       LogEntryType 
= EventLogEntryType.SuccessAudit; 
InBlock.gif       
break
InBlock.gif      
default
InBlock.gif       LogEntryType 
= EventLogEntryType.SuccessAudit; 
InBlock.gif       
break
ExpandedSubBlockEnd.gif     }
 
InBlock.gif
InBlock.gif     EventLog eventLog 
= new EventLog("Application"
InBlock.gif
InBlock.gifApplicationConfiguration.EventLogMachineName, ApplicationConfiguration.EventLogSourceName ); 
InBlock.gif     
//写入事件日志 
InBlock.gif
     eventLog.WriteEntry(messageText, LogEntryType); 
InBlock.gif
ExpandedSubBlockEnd.gif    }
 
ExpandedSubBlockStart.gif   
catch {} //忽略任何异常 
ExpandedSubBlockEnd.gif
  }
 
ExpandedSubBlockEnd.gif }
 //class ApplicationLog 
ExpandedSubBlockEnd.gif
}
 
InBlock.gif

十、Panel 横向滚动,纵向自动扩展
None.gif <asp:panel style = " overflow-x:scroll;overflow-y:auto; " >< / asp:panel>

十一、DataGrid行随鼠标变色
None.gif private   void  ItemDataBound( object  sender, System.Web.UI.WebControls.DataGridItemEventArgs e) 
ExpandedBlockStart.gif

InBlock.gif 
if (e.Item.ItemType!=ListItemType.Header) 
ExpandedSubBlockStart.gif 

InBlock.gif  e.Item.Attributes.Add( 
"onmouseout","this.style.backgroundColor=\""+e.Item.Style
InBlock.gif

InBlock.gif[
"BACKGROUND-COLOR"]+"\""); 
InBlock.gif
  e.Item.Attributes.Add( "onmouseover","this.style.backgroundColor=\"""#EEE6F8"+"\""); 
ExpandedSubBlockEnd.gif }
 
ExpandedBlockEnd.gif}
 

十二、读取DataGrid控件的TextBox值
None.gif foreach (DataGrid dgi  in  yourDataGrid.Items) 
ExpandedBlockStart.gif

InBlock.gif TextBox tb 
= (TextBox)dgi.FindControl("yourTextBoxId"); 
InBlock.gif tb.Textdot.gif
ExpandedBlockEnd.gif}
 

十三、当点击编辑键时,控制文本框的大小
None.gif private   void  DataGrid1_ItemDataBound(obj sender,DataGridItemEventArgs e) 
ExpandedBlockStart.gif

InBlock.gif 
for(int i=0;i<e.Item.Cells.Count-1;i++
InBlock.gif  
if(e.Item.ItemType==ListItemType.EditType) 
ExpandedSubBlockStart.gif  

InBlock.gif   e.Item.Cells[i].Attributes.Add(
"Width""80px"
ExpandedSubBlockEnd.gif  }
 
ExpandedBlockEnd.gif}
 

十四、弹出对话框
None.gif private   static   string  ScriptBegin  =   " <script language=\ " JavaScript\ " "
None.gif
private   static   string  ScriptEnd  =   " </script> "
None.gif
None.gif
public   static   void  ConfirmMessageBox( string  PageTarget, string  Content) 
ExpandedBlockStart.gif

InBlock.gif 
string ConfirmContent="var retValue=window.confirm(’"+Content+"’);"+"if(retValue)
InBlock.gif

ExpandedSubBlockStart.gif
{window.location="+PageTarget+"’;}"
InBlock.gif

InBlock.gif ConfirmContent
=ScriptBegin + ConfirmContent + ScriptEnd; 
InBlock.gif
InBlock.gif Page ParameterPage 
= (Page)System.Web.HttpContext.Current.Handler; 
InBlock.gif ParameterPage.RegisterStartupScript(
"confirm",ConfirmContent); 
InBlock.gif 
//Response.Write(strScript); 
ExpandedBlockEnd.gif
}
 



本文转自高海东博客园博客,原文链接:http://www.cnblogs.com/ghd258/archive/2005/11/06/270034.html,如需转载请自行联系原作者
相关实践学习
日志服务之使用Nginx模式采集日志
本文介绍如何通过日志服务控制台创建Nginx模式的Logtail配置快速采集Nginx日志并进行多维度分析。
相关文章
|
3月前
|
SQL 开发框架 .NET
分享130个ASP整站程序源码,总有一款适合您
分享130个ASP整站程序源码,总有一款适合您
23 1
|
3月前
|
SQL 开发框架 .NET
分享134个ASP整站程序源码,总有一款适合您
分享134个ASP整站程序源码,总有一款适合您
21 1
|
3月前
|
开发框架 .NET 网络安全
分享128个ASP整站程序源码,总有一款适合您
分享128个ASP整站程序源码,总有一款适合您
20 0
|
3月前
|
开发框架 安全 .NET
分享119个ASP整站程序源码,总有一款适合您
分享119个ASP整站程序源码,总有一款适合您
30 4
|
3月前
|
SQL 开发框架 .NET
分享123个ASP整站程序源码,总有一款适合您
分享123个ASP整站程序源码,总有一款适合您
20 0
|
3月前
|
开发框架 .NET UED
分享111个ASP整站程序源码,总有一款适合您
分享111个ASP整站程序源码,总有一款适合您
28 3
|
3月前
|
SQL 机器学习/深度学习 开发框架
分享95个ASP整站程序源码,总有一款适合您
分享95个ASP整站程序源码,总有一款适合您
21 1
|
3月前
|
开发框架 安全 .NET
分享80个ASP整站程序源码,总有一款适合您
分享80个ASP整站程序源码,总有一款适合您
28 3
|
3月前
|
开发框架 JavaScript .NET
分享60个ASP精品程序源码,总有一款适合您
分享60个ASP精品程序源码,总有一款适合您
18 1
|
3月前
|
开发框架 监控 小程序
分享66个ASP精品程序源码,总有一款适合您
分享66个ASP精品程序源码,总有一款适合您
30 2