易截截图软件、单文件、免安装、纯绿色、仅160KB
热门标签: c c# c++ asp asp.net linux php jsp java vb Python Ruby mysql sql access Sqlite sqlserver delphi javascript Oracle ajax wap mssql html css flash flex dreamweaver xml
 最新文章 :

ASP.NET介绍

什么是 ASP?
  ASP 是一种使嵌入网页中的脚本可由因特网服务器执行的服务器端脚本技术。
  ASP 是一项微软公司的技术
  ASP 指 Active Server Pages(动态服务器页面)
  ASP 是运行于 IIS 之中的程序
  IIS 指 Internet Information Services(因特网信息服务)
  IIS 是 Windows 2000 捆绑的免费组件
  IIS同时也是 Windows NT 4.0 的可选组件
  此可选组件可通过因特网下载
  PWS 的体积更小 - 不过拥有 IIS 的完整功能
  PWS 可在 Windows 95/98 的安装 CD 中找到
  ASP.net不仅仅是 Active Server Page (ASP) 的下一个版本,而且是一种建立在通用语言上的程序构架,能被用于一台Web服务器来建立强大的Web应用程序。ASP.net提供许多比现在的Web开发模式强大的优势。
[编辑本段]执行效率大幅提高
  ASP.net是把基于通用语言的程序在服务器上运行。不像以前的ASP即时解释程序,而是将程序在服务器端首次运行时进行编译,这样的执行效果,当然比一条一条的解释强很多。
[编辑本段]世界级的工具支持
  ASP.net构架是可以用Microsoft(R)公司最新的产品 Visual Studio.net开发环境进行开发,WYSIWYG(What You See Is What ......

ASp.net 生成页面,服务器控件对应html标签

Server controls
Besides HTML elements, ASP.NET uses server controls which have similar definition to HTML elements. The important difference between the two is that, unlike HTML elements, server controls are accessible from the code-behind or: the server side. This is determined with runat="server" attribute in their definitions. Server controls have different attributes than HTML elements and they are called properties. For example, Image control (which is equivalent to IMG element) has ImageUrl property instead of SRC attribute. But Visual Studio has very useful feature called intellisense which is some kind of autocomplete for your code and that will help you explore various properties.
Imoprtan note: Always style elements using CSS insted of server controls properties.
Server controls are much simpler than you might think. Each server control is rendered to a known HTML element on the client. Here is a list of server controls with their HTML equivalents and selectors that can ......

ASp.net 生成页面,服务器控件对应html标签

Server controls
Besides HTML elements, ASP.NET uses server controls which have similar definition to HTML elements. The important difference between the two is that, unlike HTML elements, server controls are accessible from the code-behind or: the server side. This is determined with runat="server" attribute in their definitions. Server controls have different attributes than HTML elements and they are called properties. For example, Image control (which is equivalent to IMG element) has ImageUrl property instead of SRC attribute. But Visual Studio has very useful feature called intellisense which is some kind of autocomplete for your code and that will help you explore various properties.
Imoprtan note: Always style elements using CSS insted of server controls properties.
Server controls are much simpler than you might think. Each server control is rendered to a known HTML element on the client. Here is a list of server controls with their HTML equivalents and selectors that can ......

asp.net 数据访问层使用存储过程分页

      在asp.net 网页中如果在业务逻辑层分页在使用PagedDataSource对象,但如果数据记录过多,使用它会严重的损害应用程序的性能.
所以最好在数据访层分页,如果这样就要使用存储过程来分页.以下是以pubs 数据库中的employee表为例来进行数据分页的存储过程,你可以参考它根据实际情况来创建自己的存储过程.
注:@pageindex 数据页的索引,@dataperpage 每页的记录数目,@howmanyrecords 用来获取总的记录数.
create  proc getdata @pageindex int,@dataperpage int,@howmanyrecords int output
as
declare @temptable table
(
 rowindex int,
emp_id char(9),
 fname varchar(20),
 minit char(1),
 lname varchar(30)
 )
insert into @temptable
select row_number() over(order by emp_id) as rowindex,emp_id,fname,minit,lname
from employee
select @howmanyrecords=count(rowindex) from @temptable
select * from @temptable
where rowindex>(@pageindex-1)*@dataperpage
and rowindex<=@pageindex*@dataperpage
 
declare @howmanyrecords int
exec getdata 2,5,@howmanyrec ......

linux学习记录(一)

一、打开/etc/apt/source.list源列表文件加放源
二、make 工具:
                       make默认查找的文件名:GNUmakefile  makefile Makefile
                       常用预定义变量
                       $*              不含扩展名的目标文件
                       $@              目标的完整名称。
                    &nbs ......

Linux桌面:柳暗花明明又一村






<!--
@page { margin: 2cm }
P { margin-bottom: 0.21cm }
-->
       计算机桌面极为复杂,这是人与机器相互对弈的地方。当今,
Linux
桌面遇到了一些麻烦,
bug
成千上万,怎么办呢?
 
       每日仔细观察
Ubuntu
官方
bug
检测网站(
launchpad
)的数据,你不难发现
Linux
桌面的
bug
高峰期已经到来,
bug
总数开始呈现出波动性的下降趋势。这是一个好兆头。有人对
Linux
桌面只会唱赞歌,没有实际意义,用处不大。
 
     12

17
日,
Ubuntu
奠基人
Mark
Shuttleworth
表示不再担任
Canonical
公司的
CEO
,摆脱公司的日常事务,专注于
Ubuntu
核心产品的设计和开发,加强
Ubuntu
社区领导,密切与合作伙伴的关系,此举对于
Linux
桌面而言,无疑是一个利好的消息。
 
        当前,
Canonical
公司的发展势头很好,走在正确的航线上。
Shuttleworth
不贪图公司
CEO
的桂冠,重新回到
Ubuntu
社区,回到程序员中间,意味深长。如此决定, ......

linux脚本编写基础

Linux脚本编写语法基础介绍:
1 开头
程序必须以下面的行开始(必须方在文件的第一行):
#!/bin/sh
符号#!用来告诉系统它后面的参数是用来执行该文件的程序。在这个例子中我们使用/bin/sh来执行程序。
当编写脚本完成时,如果要执行该脚本,还必须使其可执行。
要使编写脚本可执行:
编译 chmod +x filename 这样才能用./filename 来运行
2 注释
在进行shell编程时,以#开头的句子表示注释,直到这一行的结束。我们真诚地建议您在程序中使用注释。
如果您使用了注释,那么即使相当长的时间内没有使用该脚本,您也能在很短的时间内明白该脚本的作用及工作原理。
3 变量
在其他编程语言中您必须使用变量。在shell编程中,所有的变量都由字符串组成,并且您不需要对变量进行声明。要赋值给一个变量,您可以这样写:
#!/bin/sh
#对变量赋值:
a="hello world"
# 现在打印变量a的内容:
echo "A is:"
echo $a
有时候变量名很容易与其他文字混淆,比如:
num=2
echo "this is the $numnd"
这并不会打印出"this is the 2nd",而仅仅打印"this is the ",因为shell会去搜索变量numnd的值,但是这个变量时没有值的。可以使用花括号来告诉shell我们要打印的是num ......
总记录数:40319; 总页数:6720; 每页6 条; 首页 上一页 [4602] [4603] [4604] [4605] 4606 [4607] [4608] [4609] [4610] [4611]  下一页 尾页
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号