Archive

Archive for สิงหาคม, 2009

C# อ่านเขียน app.config ของโปรแกรม

สิงหาคม 25th, 2009

อ่าน

string value = ConfigurationManager.AppSettings["appvalue"]; 

เขียน

System.Configuration.Configuration config =ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);   

config.AppSettings.Settings["appvalue"].Value = “3″;        

config.Save(ConfigurationSaveMode.Modified);   

ConfigurationManager.RefreshSection(“appSettings”);  

 

C#

แสดง path เต็มของไฟล์บน web server

สิงหาคม 20th, 2009

เป็นโค้ดสั้นๆ ที่เพิ่งจะค้นพบ

<?php
$fullpath = getcwd();
echo
“Full path is $fullpath”;
?>

PHP