ย้ายแล้วนะครับ ย้ายไปเขียนที่ Blog.thaiexpresscar.com

October 1, 2009 by p1kae

Blog.thaiexpresscar.com นะครับ ..ขอบคุณมากครับผม

Paths in ASP.NET

September 4, 2009 by p1kae

Path Functions in ASP.NET and Their Results

Expression => Evaluation

this.TemplateSourceDirectory
=> /informit/subdir
Request.MapPath(“log.txt”)
=> c:\mywebdirs\informit\subdir\log.txt
this.MapPathSecure(“log.txt”)
=> c:\mywebdirs\informit\subdir\log.txt
Request.Path
=> /informit/subdir/pathsample.aspx/extra
Read the rest of this entry »

วันนี้ที่ฉันป่วย

August 17, 2009 by p1kae

ป่วยจริงๆ ครับ ..ไข้ขึ้นสูงมาก แล้วก็เพ้อตลอดยามที่ไข้ขึ้นสูง.. แย่จริงๆ

แค่อยากตื่น
และฟื้นขึ้นมองเธอได้
และอยากให้อยู่ใกล้ใกล้
ในฝันนั้นมีดวงดาว
ที่อยู่ไม่ห่างจากฉัน

ดวง ดาว ที่ระยิบพราวและ วาว วาม
คงจะไม่งามดั่ง ดวงตา ดวงที่จ้องมา ดั่งตาคู่นั้น
คนดี คนที่ฉันมีอยู่เคียงกาย
ทำให้หัวใจหวั่นไหวไปทุกอย่างกับเธอ

ไม่มีใครที่ล้ำค่า ไม่มีใครสำคัญกว่า
คนที่คอยห่วงหา คอยห่วงใยทุกลมหายใจ
เมื่อหลับตาลงในคืนที่อ่อนล้า
ตื่นมามีเธอไม่ห่างหาย
อยู่ข้างเคียงกายตลอดมา
พบความรักที่ล้ำค่า ความใส่ใจที่เกินกว่า
ไม่อาจจะเสาะหา คำขอบคุณได้ดังตั้งใจ
ก่อนหลับตาลงในวันที่อ่อนล้า
จดจำแววตาที่สดใส
คอยห่วงใยอยู่ข้างข้างกัน
เพียงแค่เรานั้นตื่น …..Armchair

ทำไมพอทำงานแล้วเราหยุดป่วยเยอะจัง ..
แล้วงี้จะเจริญไหมเนี้ย T^T
* update อาการหลังไปหาหมอ เป็นทอมซิลอักเสบตามที่คาดไว้

รถตู้. at thailand

August 3, 2009 by p1kae

ปาด ซ้าย ขวา กันอย่างไม่สนใจว่าคันข้างๆ เป็นลูกพ่อ ลูกแม่ ใคร
นับว่าเป็นการนั่งรถตู้ …. ที่มันส์ เสียว ได้ใจจริงๆ

วันนี้กลับบ้านมา ต้องรีบมาเขียนก่อน นับเป็น Post ภาษาไทยเรื่องแรกเลย.
ด้วยความว่ากลัวขาดอรรถรส ในการบรรยาย ในการโดยสารรถตู้ ประตูน้ำ-วัดสน

Read the rest of this entry »

Where’s Browser?, Where’s IDE?

July 24, 2009 by p1kae

i have a little problem when i c to the tashbar. What the…..!!!

Where's my browser?,Where's my IDE?

Where's my browser?,Where's my IDE?

….  :P

Get day start and end of week in .net

July 21, 2009 by p1kae

i want to get day start and end of week for
use generate data in period time.
i search and get this method from asp.net thx a lot Mr. SGWellens.

Read the rest of this entry »

learn to use Google AJAX Search API with me.

June 26, 2009 by p1kae

get start with sign-up for key at page.
( http://code.google.com/intl/th-TH/apis/ajaxsearch/signup.html )
need to login with google ID or gmail ID :)
one ID everything use. haha

in this page we have key and example code we can use example code to test Search page. copy example code and open notepad and save file to .html
Finish! !!!! why it’s easy? i don’t to do anything.  :~(

MSSQL export to visio

June 22, 2009 by p1kae

how to export schema database from MSSQL to Visio?

Read the rest of this entry »

Datetime with ASP.net

June 22, 2009 by p1kae

it’s make very trouble for me. i try to collect my problem.

Read the rest of this entry »

Export XML

June 17, 2009 by p1kae

today i found a problem to export xml (dialog popup).
this code i found it in www.west-wind.com
in reply by Befekadu and answer by Rick Strahl.

Dim doc As XmlDocument = New XmlDocument()
'doc.LoadXml("Everyday Italian Giada De Laurentiis  2005 30.00")
'i use load xml file to export
doc.Load(Server.MapPath("myXML.xml"))
Response.ContentType = "text/plain"
Response.AppendHeader("Content-Disposition", "attachment; filename=xmlFile.xml")
doc.Save(Response.OutputStream)
Response.End()

finish!! it’s a easy code but i can’t do it T.T
thank you very much.