WinFLP

Windows Fundamentals For Legacy PCs
企业IT老设备的救命稻草还是未来发展方向

前言
      Microsoft Windows Fundamentals for Legacy PCs (“用于旧PC的 Microsoft Windows XP 基础版”,以下简称:WinFLP)是一款基于Windows的操作系统,专为拥有旧电脑而又无力购置新硬件的企业用户设计。WinFLP 提供与 Microsoft Windows XP SP2 同等的安全性与可管理性,同时提供向最新硬件与操作系统的平滑过渡。

实用的 Javascript 代码

[ 2006/07/28 11:25 | by gOxiA ]

      今天成转载日了,好多东西都是从网上找的,呵呵及时地获取新鲜血液补充一下能量还是很有必要的。

  1. oncontextmenu="window.event.returnvalue=false" 将彻底屏蔽鼠标右键
    <table border oncontextmenu=return(false)><td>no</table> 可用于Table
  2. <body onselectstart="return false"> 取消选取、防止复制
  3. onpaste="return false" 不准粘贴
  4. oncopy="return false;" oncut="return false;" 防止复制
  5. <link rel="Shortcut Icon" href="favicon.ico"> IE地址栏前换成自己的图标
  6. <link rel="Bookmark" href="favicon.ico"> 可以在收藏夹中显示出你的图标
  7. <input style="ime-mode:disabled"> 关闭输入法
  8. 永远都会带着框架
    <script language="javascript"><!--
    if (window == top)top.location.href = "frames.htm"; //frames.htm为框架网页
    // --></script>
  9. 防止被人frame
    <SCRIPT LANGUAGE=javascript><!--
    if (top.location != self.location)top.location=self.location;
    // --></SCRIPT>
  10. <noscript><iframe src=*.html></iframe></noscript> 网页将不能被另存为
  11. <input type=button value=查看网页源代码
    onclick="window.location = 'view-source:'+ 'http://www.htmlcn.com/'">
  12. 取得控件的绝对位置

    //javascript
    <script language="javascript">
    function getIE(e){
    var t=e.offsetTop;
    var l=e.offsetLeft;
    while(e=e.offsetParent){
    t+=e.offsetTop;
    l+=e.offsetLeft;
    }
    alert("top="+t+"\nleft="+l);
    }
    </script>

    //VBScript
    <script language="VBScript"><!--
    function getIE()
    dim t,l,a,b
    set a=document.all.img1
    t=document.all.img1.offsetTop
    l=document.all.img1.offsetLeft
    while a.tagName<>"BODY"
    set a = a.offsetParent
    t=t+a.offsetTop
    l=l+a.offsetLeft
    wend
    msgbox "top="&t&chr(13)&"left="&l,64,"得到控件的位置"
    end function
    --></script>

  13. 光标是停在文本框文字的最后
    <script language="javascript">
    function cc()
    {
    var e = event.srcElement;
    var r =e.createTextRange();
    r.moveStart('character',e.value.length);
    r.collapse(true);
    r.select();
    }
    </script>
    <input type=text name=text1 value="123" onfocus="cc()">
  14. 最小化、最大化、关闭窗口
    <object id=hh1 classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11">
    <param name="Command" value="Minimize"></object>
    <object id=hh2 classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11">
    <param name="Command" value="Maximize"></object>
    <OBJECT id=hh3 classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
    <PARAM NAME="Command" value="Close"></OBJECT>

    <input type=button value=最小化 onclick=hh1.Click()>
    <input type=button value=最大化 onclick=hh2.Click()>
    <input type=button value=关闭 onclick=hh3.Click()>
    本例适用于IE

Asp.net下基础应用SQL2000

[ 2006/07/28 11:21 | by gOxiA ]

      对编程开发不敢冒所以也不精通,菜鸟一个但是不看看又不行,今天在网上找了个适合入门者的小资料,感觉很有用,转载至此留作后用。

    以下是有关ASP.net连接SQL Server2000数据库的例程:
    
     Asp.net连接SQL Server2000数据库例程详解:
     <%@ Import Namespace="System.Data" %>
     <%@ Import NameSpace="System.Data.SqlClient" %>
     <script laguage="VB" runat="server">
     sub page_load(sender as Object,e as EventArgs)
     Dim myConnection As SqlConnection
     Dim myCommand As SqlCommand
     Dim ds as DataSet
     '1.connect to sql server
     myConnection = New SqlConnection( "server=localhost;database=DEMOs;uid=username;pwd=Passw0rd" )
     myConnection.Open()
     la1.text="Connection Opened!"
    
     '2.Create a table
     myCommand = New SqlCommand( "CREATE TABLE [test] ([id] [int] IDENTITY (1, 1) NOT NULL ,[name]
    
     [char] (10) COLLATE Chinese_PRC_CI_AS NULL ,[sex] [char] (10) COLLATE Chinese_PRC_CI_AS NULL
    
     )", myConnection )
     myCommand.ExecuteNonQuery()
     la2.text="New table created!"
    
     '2 添加纪录
     myCommand = New SqlCommand( "Insert into [test] (name,sex) values( 'gOxiA','男' )",
    
     myConnection )
     myCommand.ExecuteNonQuery()
     la3.text="New Record Inserted!"
    
     '3 更新数据
     myCommand = New SqlCommand( "UPDATE [test] SET name='gOxiA' where name='SuFan'", myConnection )
     myCommand.ExecuteNonQuery()
     la4.text="Record Updated!"
    
     '4 删除数据
     myCommand = New SqlCommand( "delete from [test] where name='gOxiA'", myConnection )
     myCommand.ExecuteNonQuery()
     la5.text="Record Deleted!"
    
     '5 用DataGrid显示数据
     myCommand = New SqlCommand( "select * from [test]", myConnection )
     MyDataGrid.DataSource=myCommand.ExecuteReader()
     MyDataGrid.DataBind()
     end sub
     </script>
     <html>
     <body>
     <asp:label id="la1" runat="server" /><br>
     <asp:label id="la2" runat="server" /><br>
     <asp:label id="la3" runat="server" /><br>
     <asp:label id="la4" runat="server" /><br>
     <asp:label id="la5" runat="server" /><br>
     <ASP:DataGrid id="MyDataGrid" runat="server"
     BorderColor="black"
     BorderWidth="1"
     GridLines="Both"
     CellPadding="3"
     CellSpacing="0"
     Font-Name="Verdana"
     Font-Size="10pt"
     HeaderStyle-BackColor="#aaaadd"
     AlternatingItemStyle-BackColor="#eeeeee"
     >
     </asp:DataGrid>
    
     </body>
     </html> 

分页: 1/7 第一页 1 2 3 4 5 6 7 下页 最后页 [ 显示模式: 摘要 | 列表 ]