2008年12月10日 星期三

2008年11月20日 星期四

北海道相片

拖了許久才想放上.....
北海道

2008年7月1日 星期二

大危機!婚宴場所不知道有沒有下落.

糟糕囉,好不容易時間敲定,這下才發現到當初設想的場所找就被訂光了,現在豐原只剩下儷宴可以訂了,禮拜六日就定要生死了,不然這下請客真的得到台中找地方了。

2008年6月30日 星期一

緊湊,忙碌,結婚是件大工程

在10/11號的婚禮之前,還得把家具補好,場所定好,天啊,烙人是一件非常累的事情= =........這周得趕快弄出來名單了,還真怕訂不到場所。

選購喜餅!!

日子確定了,喜餅相當難以決定的一個項目......尤其在吃了三間之後,不過真的會讓人想買的喜餅,我看還是味道不太差,可是服務比較好的店家吧(跟著我們一起試吃未來姪女才是強者),目前確定要選擇禮紡當作喜餅廠商了,到時候要拿著餅到處送哩....好累好累。

雙方家長見面

雙方家長見面的當天,一整個只能說,酒氣沖天..........該談的事情沒談到,酒倒是喝了不少= =.....
只能說還好氣氛愉快,接下來繼續操辦一堆事務還是有忙不完的事情啊。

2008年6月24日 星期二

新家新電器

今天終於在兩個房間裝了冷氣(安裝時間超久,成屋沒預留管線的下場。)以及增加了新冰箱了,一整個感覺就越來越有家的感覺了....可是看到新聞電費要調漲了,就很慶幸當初寧可多花一點錢買省電一點的家電,希望影響不會太大,現在看起來每月電費都花在不關機的電腦上了,得開始多多考慮節能省電的情況了......也希望地球上的人多注意一下自己家中的耗電情況....繼續和老婆計算以後要怎麼省能源....

2008年6月14日 星期六

2008年5月30日 星期五

終於走出第一步了,提親!

提親當天時在是有夠緊張的啦,我家人也是緊張到不行,當場也是不知道講甚麼好,還好有經歷過的大姑丈和小姑丈,也算是順利的結束了,再來就是等家長會面後才能商討日子,希望一切順利啊。

2008年5月28日 星期三

if asp.net will send htmlcode in form

add validateRequest="false"
at page tag

Asp.net TextBox ReadOnly or Disable can not get value

In asp.net form page, ReadOnly TextBox's Text won't be keeped.
For this, you can set TextBox attribute readonly when page onload event
ex.
TextBox1.Attributes.Add("readonly", "readonly");

2008年5月26日 星期一

在GRIDVIEW中 增加Javascript


protected void GridView3_RowDataBound(object sender, GridViewRowEventArgs e)中
再產生對每行填值時可用
LinkButton lbt = (LinkButton)e.Row.Cells[0].FindControl("FileDownLoad2");
String itemno = lbt.CommandArgument;
lbt.Attributes.Add("onclick", "window.open('filedownload.aspx?itemno=" + itemno + "','','width=10,height=10,toolbar=no,menubar=no,scrollbars=no')");
增加Onclick的動作,如果寫在aspx中會有很多問題,才移到這邊,以程式碼動態產生

2008年5月22日 星期四

在Asp.net中GridView相關處理

Blogger can't use asp.net tag
GridView id = GridView1
3 column

for (int i = 0; i < this.GridView1.Rows.Count; i++) {
GridViewRow gvr = GridView1.Rows[i];
CheckBox ckb = (CheckBox)gvr.FindControl("CheckBox1");
if (ckb.Checked == true)
{
ckb.Text.ToString();
gvr.Cells[2].Text ="Test"+ i;
//if a column is invisible ,it's text data will be null
}
else {
ckb.Text.ToString();
gvr.Cells[2].Text.ToString();
}
}

2008年5月20日 星期二

LINQ顯示字串轉換

原本的程式碼
var result = from lmst in context.KM_routeformmst
join ldtl in context.KM_routeformdtl on lmst.form_no equals ldtl.form_no
join luser in context.Users on ldtl.to_user equals luser.user_no
where
ldtl.visible == "Y" && lmst.sender == this.uo.getEmpno()
select new
{
表單號 = lmst.form_no,
狀態 = TransForm(lmst.type),
簽核者 = luser.user_name,
待審知識編號 = lmst.buffer_km_no
}
;
可以套入Method轉換顯示Value
private String TransForm(String text) {
String TypeString ="";
switch (text){
case "AAA": {
TypeString = "Test1";
break;
}
default: {
TypeString = "例外";
break;
}
}
return TypeString;
}

2008年5月12日 星期一

從WEB.Config中取得ConnectionSttring

ConfigurationManager.ConnectionStrings["key"].ConnectionString;

2008年5月11日 星期日

ASP.net 檔案下載

參考程式碼:
String filepath = "實體路徑";
WebClient wc = new WebClient();
Response.ClearHeaders();
Response.Clear();
Response.Expires = 0;
Response.Buffer = true;
Response.AddHeader("Accept-Language", "zh-tw");
Response.AddHeader("Content-Disposition", "Attachment;FileName=" + System.Web.HttpUtility.UrlEncode(filepath, System.Text.Encoding.UTF8));
Response.ContentType = "APPLICATION/octet-stream";
Response.BinaryWrite(wc.DownloadData(filepath));
Response.End();

終於決定開始撰寫每天的過往了....

安裝自己的ROLLER失敗,看來還是使用別人的吧...