摘要:
算了,什么都不想了,专注点吧 阅读全文
摘要:
package org.zxj.Message;public class MessageBo implements java.io.Serializable{ private String title, content; private java.sql.Date date; public void setTitle(String title){ this.title = title; } pu... 阅读全文
摘要:
ALTER TABLE:添加,修改,删除表的列,约束等表的定义。查看列:desc 表名;修改表名:alter table t_book rename to bbb;添加列:alter table 表名 add column 列名 varchar(30);删除列:alter table 表名 drop column 列名;修改列名MySQL: alter table bbb change nnnnn... 阅读全文
摘要:
protected int Mylogin(string table,string name,string pwd) { string MyConnectionString = System.Configuration.ConfigurationManager.ConnectionStrings["SMS"].ConnectionString; SqlConnect... 阅读全文
摘要:
方案1 改用服务器控件,对于原来就是 html 的,如 img,加上 runat=server,然后用 ~ 表示网站跟目录 > > 方案2 手动编码实现 /images/my.gif ' /> 以上均假设 images 在你网站的跟目录 阅读全文
摘要:
在这个说明中,“collapsing margins”(折叠margin)的意思是:2个或以上盒模型之间(关系可以是相邻或嵌套)相邻的margin属性(这之间不能有非空内容、padding区域、border边框 或使用清除分离方法)结合表示为一个单独的margin。 在css2.1中,水平的margin不会被折叠。 垂直margin可能在一些盒模型中被折叠: 1、在常规文档流中,2个或... 阅读全文
摘要:
Login Test 0){ out.println("登陆成功"); }else{ out.println("用户名或密码错误!"); } }catch(Exception e){ out.println(e); } %> 阅读全文
摘要:
<%@ page contentType="text/html" language="java" pageEncoding="GBK" %><%@ page import="java.sql.*" %><!DOCTYPE html><html> <head> <title>insert Test</title> </head> <body> <h2>will it happen</h2> 阅读全文
摘要:
string s = " 这个 可以 把 撒的发看 开 头 中间 多余 的空格去掉"; string pattern = " +";//注意格式 string result = Regex.Replace(s.Trim(), pattern, " "); result = result.Replace(" "," ");//替换 空格 Console.WriteLine(result); 阅读全文