为你而来

上一页 1 2 3 4 5 6 ··· 10 下一页

2012年9月18日

什么是flex?

摘要: flex 可以说它是另一种脚本语言,如javascript;但是它又有自己的(控件)标签,如html,它的脚本语言是ActionScript,而html的脚本语言是JavaScript;它也有css文件,但有别于一般讲的css,虽然两者有相似之处;所以可以理解为,另一套的html+javascript+css;当然了,如果没有Adobe flash player插件(没有另外的平台),是无法在浏览器中解析运行的 阅读全文

posted @ 2012-09-18 10:57 为你而来 阅读(520) 评论(0) 推荐(0) 编辑

aspnet企业级开发:asp.net与flex的结合

摘要: file->export->release....(在flex builder 3开发环境中)在弹出对话框的下一步,选择你要导出的mxml文件,选择导出的目录然后把导出的各类文件,全部复制到visual studio 中,选择项目右键粘贴即可。 1 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="3-4.aspx.cs" Inherits="_3_4" %> 2 3 <!DOCTYPE html PUBLIC " 阅读全文

posted @ 2012-09-18 01:19 为你而来 阅读(516) 评论(0) 推荐(0) 编辑

2012年9月15日

aspnet企业级开发:服务器控件的RenderControl方法

摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.UI; 6 using System.Web.UI.WebControls; 7 using System.Text; 8 using System.IO; 9 10 public partial class _3_2 : System.Web.UI.Page11 {12 protected void Page_Load(object sender, EventA... 阅读全文

posted @ 2012-09-15 22:11 为你而来 阅读(278) 评论(0) 推荐(0) 编辑

aspnet企业级开发:html服务器控件的属性

摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.UI; 6 using System.Web.UI.WebControls; 7 8 public partial class _3_3 : System.Web.UI.Page 9 {10 protected void Page_Load(object sender, EventArgs e)11 {12 Text1.Style.Add... 阅读全文

posted @ 2012-09-15 22:04 为你而来 阅读(154) 评论(0) 推荐(0) 编辑

2012年9月13日

aspnet企业级开发:获取新插入记录id的sql语句

摘要: 1 insert table value(null,null,null);2 3 select @@IDENTITY; 阅读全文

posted @ 2012-09-13 23:06 为你而来 阅读(277) 评论(0) 推荐(0) 编辑

2012年9月12日

aspnet企业级开发:生成html页面的流程

摘要: 1 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="3-0.aspx.cs" Inherits="_3_0" %> 2 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4 5 <html 阅读全文

posted @ 2012-09-12 11:57 为你而来 阅读(330) 评论(0) 推荐(0) 编辑

2012年9月11日

aspnet企业级开发:sql分页语句

摘要: 1 select *,row_number() over(order by name) as 'row_number' from student2 3 select top 5 * from student where id not in (select top 5 id from student) 阅读全文

posted @ 2012-09-11 00:41 为你而来 阅读(131) 评论(0) 推荐(0) 编辑

2012年9月4日

aspnet企业级开发:为html控件添加事件

摘要: 1 }else if(e.Row.RowType == DataControlRowType.Pager){ 2 3 if (select == null) 4 { 5 select = new HtmlSelect(); 6 select.Items.Add(new ListItem("1", "1")); 7 select.Items.Add(new ListItem("2", "2")); 8 ... 阅读全文

posted @ 2012-09-04 02:09 为你而来 阅读(395) 评论(0) 推荐(0) 编辑

2012年9月1日

aspnet企业级开发:用javascript去除浏览器状态栏的开发信息痕迹

摘要: 1 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="2-1.aspx.cs" Inherits="_2_1" %> 2 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4 5 <html 阅读全文

posted @ 2012-09-01 18:08 为你而来 阅读(230) 评论(0) 推荐(0) 编辑

2012年6月21日

php:自己设计的一个php验证码

摘要: 1 <?php 2 $length=5; //即5个字符 3 $length_x=$length; 4 while($length-->0){ 5 $temp=rand(1,3); 6 switch($temp){ 7 case 1: 8 $chars[]=sprintf("%c",rand(65,90)); 9 break;10 case 2:11 $chars[]=s... 阅读全文

posted @ 2012-06-21 21:09 为你而来 阅读(239) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 10 下一页

导航