Posted on Tháng Ba 22, 2009 by meopro
Đây là 1 số tool mà theo mình là thực sự cần thiết cho dân lập trình đặc biệc là dân lập trình web
1.Firebug Firefox Extension
Đây là 1 tool cực kỳ hữu ích cho việc phân tích 1 site bao gồm từ CSS cho tới javascript và lấy các hình ảnh dù cho bị giấu [...]
Đăng trong: Javascript, Lập trình Web | Thẻ: 1 cài Tool dành riêng cho dân Coder | Leave a Comment »
Posted on Tháng Ba 21, 2009 by meopro
Anh em ơi anh em có quen từ MVC ko?
Nó lại khiến anh em nhớ đến Struts bên Java chăng ??? Thật bất ngờ là Microsoft cũng đã phát triển mô hình ứng dụng bên Java này cho ASP.NET …. anh em chúng ta cùng khám phá nha
ASP.NET MVC 1.0 provides a [...]
Đăng trong: ASP.NET, Bản Tin Công Nghệ, Lập trình Web | Thẻ: ASP.NET MVC 1.0 - Tin nóng | Leave a Comment »
Posted on Tháng Hai 28, 2009 by meopro
Beginner Resources
YAML Builder – Easy to use YAML (Yet Another Multicolumn Layout) XHTML/CSS site layout builder.
Sky CSS Tool – JavaScript CSS authoring app.
The Box Office – CSS formatting tool for wrapping text around images.
CSSTXT – Online CSS text style generator.
izzyMenu.com – Free CSS menu builder.
pForm – HTML form builder.
Roxer – Drag and drop website creator.
Wirenode [...]
Đăng trong: All In One, Lập trình Soft, Lập trình Web, Thủ Thuật, Web Development | 3 phản hồi »
Posted on Tháng Mười Hai 19, 2008 by meopro
Đoạn mã sau sẻ lấy một record ra từ bảng dữ liệu. Code này đầy trên Net mình chỉ sưu tầm và chỉnh lại tí thôi. Chỉ mang tính tham khảo!!!
String id = cust_id.getText();
try
{
PreparedStatement prepstmt;
boolean found = false;
prepstmt = theConn.dbConn.prepareStatement
(“select custName, CustAddr from tCust where custId = ?”);
prepstmt.setString(1, id);
ResultSet rs;
rs = prepstmt.executeQuery();
found = rs.next();
if (found)
System.out.println(rs.getString(1));
else
System.out.println(“Customer [...]
Đăng trong: JSP | Leave a Comment »
Posted on Tháng Mười Hai 14, 2008 by meopro
Vừa học xong cái này nên viết lại cho nhớ chứ hok có gì hết .
Để truy xuất đến bất kì Cookie nào được gởi đến trình duyết thông qua đối tượng javax.servlet.http.HttpServletRequest – phương thức là doGet và doPost. HttpServletResonse chứa phương thức Cookies[] getCookies() trả về một mảng đối tượng Cookie.
thử [...]
Đăng trong: JSP | Leave a Comment »
Posted on Tháng Ba 17, 2008 by meopro
using System.Windows.Forms;
public class WelcomeForm : Form {
private Label label1;
private TextBox textBox1;
private Button button1;
public WelcomeForm() {
this.label1 = new Label();
this.textBox1 = new TextBox();
this.button1 = new Button();
this.SuspendLayout();
this.label1.Location = new System.Drawing.Point(16, 36);
this.label1.Name = “label1″;
this.label1.Size = new System.Drawing.Size(128, 16);
this.label1.TabIndex = 0;
this.label1.Text = “Please enter your name:”;
this.textBox1.Location = new System.Drawing.Point(152, 32);
this.textBox1.Name = “textBox1″;
this.textBox1.TabIndex = 1;
this.textBox1.Text = “”;
this.button1.Location = new System.Drawing.Point(109, 80);
this.button1.Name [...]
Đăng trong: C#, PHP | Leave a Comment »