 |
|
รบกวนสอบถามหน่อยครับถ้าเกิดผมเขียนในส่วนของ class และผมจะเรียกใช้ในหน้า Web Form.cs ผมต้องเขียนยังไงอ่ะครับ
คือสมมุติผมเขียน Function ไว้ในหน้า Register.aspx.cs ประกาศฟังชั่นไว้และตอนกรอกมันจะเรียกใช้ได้เลยแบบนี้่
แต่ถ้าผมไม่อยากเอาไว้ในหน้าRegister.aspx.cs จะแยกไปเขียนใน Class1.cs อ่ะครับ ผมจะต้องเขียนและเรียกใช้ยังไงอ่ะครับ ขอตัวอย่างหน่อยครับ
Register.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using System.Text;
using System.Security.Cryptography;//**md5**//
namespace User_Login
{
public partial class Register : System.Web.UI.Page
{
//////** Password **///////
public string EncMD5(string input)
{
MD5 md5Hashfc = MD5.Create();
byte[] data = md5Hashfc.ComputeHash(Encoding.Default.GetBytes(input));
StringBuilder sBuilder = new StringBuilder();
int i = 0;
for (i = 0; i <= data.Length - 1; i++)
{
sBuilder.Append(data[i].ToString("x2"));
}
return sBuilder.ToString();
}
/////**End Password **//////
protected void btnRegister_Click(object sender, EventArgs e)
{
SqlConnection objConn = new SqlConnection();
SqlCommand objCmd = new SqlCommand();
String strConnString, strSQL;
//int intCount = 0;
//*** Open Connection ***'
strConnString = "Data Source=OFF;Initial Catalog=customer;Integrated Security=True";
objConn = new SqlConnection();
objConn.ConnectionString = strConnString;
objConn.Open();
strSQL = "INSERT INTO register (username,lastname,password,address,tel,mobile,email) " +
" VALUES " +
" ('" + this.txtUsername.Text + "','" + this.txtLastname.Text + "','"+ EncMD5("'" + this.txtPassword.Text + "'") +"', " +
" '" + this.txtAddress.Text + "','" + this.txtTel.Text + "','" + this.txtMobile.Text + "','" + this.txtEmail.Text +"' )";
ขอบคุณครับ
Tag : .NET, Ms SQL Server 2008, Web (ASP.NET), C#, VS 2010 (.NET 4.x)
|
|
 |
 |
 |
 |
Date :
2013-05-27 16:56:18 |
By :
offonepoint |
View :
4446 |
Reply :
5 |
|
 |
 |
 |
 |
|
|
|
 |