摘要:
层可以随着页面滚动而滚动,说明肯定是脱离了标准流的,CSS样式表 position:absolute;因为是上下移动,所以就是要改变层的CSS样式中的top属性定位),在jquery中有一个scrollTop属性,用于获取页面滚动的高度。所以在每次页面滚动的时候,将浮动层的高度设置为 (初始值)+ scrollTop即可。但是scrollTop在ie和其他浏览器中的获取有不一样,可以通过如下方式: var bodyTop = 0; if (typeof window.pageYOffset != 'undefined') { bodyTop = window.pag... 阅读全文
摘要:
在注册页面中,为了重置页面上所有的控件,编写了页面中重置按钮的单击事件protected void btnReset_Click(object sender, EventArgs e){Label2.Text="your hobby:";//将CheckBoxList1中选中的内容呈现在标签Label2中。 for(int i=0;i<CheckBoxList1.Items.Count;i++){if (CheckBoxList1.Items[i].Selected == true)Label2.Text += "<br/>"+Chec 阅读全文
摘要:
方法一<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html 阅读全文
摘要:
[html]view plaincopy<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><title>10之后注册</title><scriptsrc="../js/jquery-1.6. 阅读全文
摘要:
[html]view plaincopy<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><title>全选,不全选,反选</title><scriptsrc="../js/jquery-1 阅读全文
摘要:
protected void gvItems_RowDataBound(object sender, GridViewRowEventArgs e) { string sql = "select * from table"; Datalb db = new Datalb(); DataSet ds = db.Sql_s(sql); //DropDownList ddl = (DropDownList)e.Row.FindControl("DropDownList1"); ... 阅读全文
摘要:
1<scriptlanguage="javascript">2functionopenModalDialog(url,width,height)3{4window.showModalDialog(url,"","dialogWidth="+width+"px;dialogHeight="+height+"px");5window.location.reload(true);6}7</script>打开以后关闭窗户,父页面会自动刷新调用例子:在GridView的模板列里面使 阅读全文
摘要:
代码:View Code <!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"><head><meta http-equiv="Content-Type" content="text/html; 阅读全文
摘要:
asp.net动态添加控件和获取控件的值有很多时候我们需要动态的添加控件,以适应客户的需求,下面的小例子演示了如何动态的添加控件和获取控件的值。1、添加控件protectedvoidPage_Load(objectsender,EventArgse){intcounts=4;//假设添加四个控件for(inti=1;i<=counts;i++){TableRowrow=newTableRow();TableCellcellHead=newTableCell();TableCellcellContent=newTableCell();LabelLabelAuditing=newLabel( 阅读全文
摘要:
html标签:<input type="text" name="txt" onkeydown="event.returnValue=false;" onpaste="return false" />服务器控件:<asp:TextBox ID="txt" runat="server" onkeydown="event.returnValue=false;" onpaste="return false"></a 阅读全文