摘要:
黄皮书《ASP.NET 3.5从入门到精通》白皮书《ASP.NET 3.5》sql计算方法 黄皮书 458页产品记录方法 黄皮书 516页gridview 主从页 黄皮书 551页gridview 选一行 黄皮书 549页简单留言 黄皮书 593页CreateUserWizard 控件 黄皮书 692页fileupload控件 黄皮书 598页帐户与状态 黄 741页数据访问组件 商品和价格 黄皮... 阅读全文
摘要:
try { con.Open(); added = cmd.ExecuteNonQuery(); Label1.Text = "<b>操作提示:</b><br />"; Label1.Text += added.ToString() + "条记录被添加成功。"; Label1.Text += con.ServerVersion; } catch (Excepti... 阅读全文
摘要:
INSERT INTO Customer_Data //插入表(customer_id,first_name,last_name,phone) //字段VALUES (001,"Frank","liu",34312222) //值UPDATE Customer_DataSET first_name="Frank"WHERE last_name="liu" and customer_id = 001... 阅读全文
摘要:
SQL复制数据表 (select * into 与 insert into)select * into 目标表名 from 源表名insert into 目标表名(fld1, fld2) select fld1, 5 from 源表名以上两句都是将 源表 的数据插入到 目标表,但两句又有区别的:第一句(select into from)要求目标表不存在,因为在插入时会自动创建。 第二句(inser... 阅读全文
摘要:
<asp:sqlDataSource ID="EmployeeDetailsSqlDataSource" SelectCommand="SELECT EmployeeID, LastName, FirstName FROM Employees WHERE EmployeeID = @EmpID" InsertCommand="INSERT INTO Employees(LastName, ... 阅读全文
摘要:
string strID = Session["userid"].ToString(); string username ="select username from users where id='"+strID+"'"; SqlConnection con1=new SqlConnection(ConfigurationManager.AppSettings["SqlCon"]); con1.... 阅读全文
摘要:
//web.config<anonymousIdentification enabled="true"/><profile automaticSaveEnabled="true"><properties><add name="UserAge" defaultValue="0" allowAnonymous="false" type="int"/>&l... 阅读全文
摘要:
web.config<system.web> <!-- 支持匿名访问,这是在需要授权时,对没有经过身份验证的实体进行标识所必需的 --> <anonymousIdentification enabled="true"/> <!-- 设置“成员/角色管理”权限规则 --> <profile defaultProvider=... 阅读全文
摘要:
<asp:ObjectDataSource ID="EmployeeDetailsObjectDataSource" runat="server" TypeName="Samples.AspNet.Controls.NorthwindEmployee" SelectMethod="GetEmployee" UpdateMethod="UpdateEmployee" DeleteMe... 阅读全文
摘要:
<marquee> ... </marquee><marquee>啦啦啦,我会移动耶!</marquee> 啦啦啦,我会移动耶!文字移动属性的设置 方向 <direction=#> #=left, right<marquee direction=left>啦啦啦,我从右向左移!</marquee> <P>... 阅读全文