2010年3月17日 星期三

CustomValidator自定驗證

如果要自定驗證的條件,可使用CustomValidator元件來完成

CustomValidator 的用法雷同與RequiredFieldValidator,只是必須注意一點「使用 CustomValidator 控制項,而不需要設定 ControlToValidate 屬性。

若要建立伺服器端驗證函式,請為執行驗證的 ServerValidate 事件提供處理常式。

最後再利用
Page.IsValid是否為 true來達成驗證效果!

參考網址:


http://msdn.microsoft.com/zh-tw/library/system.web.ui.webcontrols.customvalidator%28VS.80%29.aspx

2009年11月17日 星期二

RequiredFieldValidator的使用(欄位驗證)

效果:




RequiredFieldValidator簡介
網址:http://msdn.microsoft.com/zh-tw/library/system.web.ui.webcontrols.requiredfieldvalidator%28VS.80%29.aspx

基本設定
1、在Textbox旁放RequiredFieldValidator物件
2、RequiredFieldValidator屬性
2.1 ErrorMessage=要顯示的內容
2.2 ControlToValidate=要驗證的物件名稱(TextboxIDName)

補充:
如果不是所有button都要自動驗證動作 ,在該button之屬性設CausesValidation="False"即可。


2009年9月29日 星期二

針對SqlCommandBuilder再進一步的使用

使用SqlCommandBuilder,新資料可以整筆新增,但若已存在且有修改的資料,並不會寫回至資料庫中,必須設下列指令才可達成,刪除亦同理作法。

SqlCommandBuilder builder = new SqlCommandBuilder(cmdSQL);
builder.RefreshSchema();

cmdSQL.UpdateCommand = builder.GetUpdateCommand();
cmdSQL.UpdateCommand = new SqlCommand("UPDATE TableName SET Field2=@para2 WHERE Field2=@para2;", usrcn);

cmdSQL.UpdateCommand.Parameters.Add("@para1", SqlDbType.NVarChar,50, "Field");

cmdSQL.UpdateCommand.Parameters.Add("@para2",SqlDbType.NVarChar,50, "Field");
cmdSQL.Update(ds_base, "Table");

注意:SqlCommandBuilder資料來源一定要有primary key欄位值

參考網址:http://msdn.microsoft.com/zh-tw/library/system.data.sqlclient.sqldataadapter.updatecommand(VS.80).aspx

2009年6月11日 星期四

ExcelImportDB(整筆新增)

取得excel資料
string strCon = @" Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source =" + 檔案路徑+ ";Extended Properties='Excel 8.0;HDR=No;IMEX=1;'";
DataSet ds_excel = new DataSet();
OleDbConnection objConn = new OleDbConnection(strCon);
objConn.Open();
OleDbDataAdapter odda = new OleDbDataAdapter("Select * from [sheet1$]", objConn);
odda.Fill(excel , "Sheet1");
objConn.Close();

定義table的欄位及資料型態(直接複製db的table)
DataSet ds_org=new DataSet();
SqlConnection sqlconn = new SqlConnection();
sqlconn.ConnectionString = ConfigurationManager.ConnectionStrings["connection"].ConnectionString;
sqlconn.Open();
SqlCommand cmd_original = new SqlCommand(@"SELECT fields1,fields2,fields3,fields4......
FROM table", sqlconn);//參考的資料表

SqlDataAdapter sda = new SqlDataAdapter(cmd_original);
sda.Fill(ds_org, "ORG");

DataTable dt = ds_org.Tables[0].Copy();//將架構和資料型態複製給定義的dt

將excel資料新增到dt(縱向新增)
for (int i = 1; i < ds_excel.Tables[0].Columns.Count; i++)
{
row = dt.NewRow();
row["fields1"] = ds_excel.Tables[0].Rows[0][i].ToString();
row["fields2"] = ds_excel.Tables[0].Rows[2][i].ToString();
.......
dt.Rows.Add(row);
}

將資料新增至DB
SqlCommandBuilder builder = new SqlCommandBuilder(sda);
builder.RefreshSchema();

sda.Update(dt);

ds_excel.Dispose();
ds_org.Dispose();
sda.Dispose();
sqlconn.Close();

2009年6月10日 星期三

數值進行四捨六入五取雙的判斷

要呈現的結果:
1.4→1
1.6→2
1.5→2
2.5→2

ALTER FUNCTION [dbo].[FN_ChangeNumber](@money decimal(18,2))
RETURNS Int
AS

BEGIN
declare @intvalue int,@decimalvalue int,@retvalue int

--取整數和小數第一位
select @intvalue=substring(Convert(nvarchar(20),@money),1, charindex('.', Convert(nvarchar(20),@money))-1) , @decimalvalue=substring(substring(Convert(nvarchar(20),@money), charindex('.', Convert(nvarchar(20),@money))+1 , len(Convert(nvarchar(20),@money))-charindex('.', Convert(nvarchar(20),@money))) ,1,1)

if(@decimalvalue<=4)begin set @retvalue=@intvalue end

if(@decimalvalue>=6)begin set @retvalue=@intvalue+1 end

if(@decimalvalue=5)begin
if(@intvalue%2=0) set @retvalue=@intvalue
else set @retvalue=@intvalue+1
end

RETURN @retvalue
END

感謝Keen協助

2009年4月2日 星期四

將圖或FLASH檔存入資料庫,並且顯示在網頁上的用法

建立一個FileUpload物件,命名為FileUp

儲檔CS:
==================================================
int imgLen = FileUp.PostedFile.ContentLength;
byte[] imgBinaryData = new byte[imgLen];
imgBinaryData = FileUp.FileBytes;
SqlConnection usrcn = new SqlConnection();
usrcn.ConnectionString = ConfigurationManager.ConnectionStrings["connect"].ConnectionString;
SqlCommand cmd_file = new SqlCommand();
cmd_file.Connection = usrcn;
cmd_file.CommandText = string.Format(@"Update ImageTB set Image=@image where imgid={0}", imgid);
cmd_file.CommandType = CommandType.Text;
//欄位型態必為Image
cmd_file.Parameters.Add("@image", SqlDbType.Image).Value = imgBinaryData;
usrcn.Open();
cmd_file.ExecuteNonQuery();
usrcn.Close();
==================================================

顯示:

ps1:無論哪個設定,請務必設定寬高,使得圖檔大小一致化
ps2:ImageHandler.ashx用法請參考下列網址!
ps3:ImageHandler.ashx若要帶參數,如同一般網頁設定方式即可!取值方式:context.Request["type"].ToString()

參考網址:
http://blog.xuite.net/alwaysfuturevision/liminzhang/9538604
http://www.blueshop.com.tw/board/show.asp?subcde=BRD20061012135834YHQ&fumcde=FUM20041006161839LRJ&rplcnt=29
http://www.blueshop.com.tw/board/show.asp?subcde=BRD2008061010385466M&fumcde=FUM20050124192253INM

感謝Polly協助