RSS订阅优然探索
你的位置:首页 » 2009 十一月
程序语言

更新Web.config

更新Web.config

private void UpdateConfig(string KeyName, string Xvalue)
        {
            XmlDocument doc = new XmlDocument();
            string sPath = Server.MapPath("web.config");
...

发布时间:2009年11月29日 标签: 更新Web.config  

SEO

C++ Function

C++ Function
#include using namespace std; void DisplayAge(int nAge); int main() { DisplayAge(42); DisplayAge(12); DisplayAge(32); return 0; } void DisplayAge(int nAge) { cout << " Hello World. I am " << nAge << " year old." << endl; }...

发布时间:2009年11月16日 标签:

C++

Hello cin

Hello cin
#include #include using namespace std; int main() { string userName; cout << "What is your name?:"; cin >> userName; cout<< "Hello " << userName << "!" << endl; return 0; }

发布时间:2009年11月16日 标签: Hello cin  

C++

VC项目文件说明

VC项目文件说明
VC项目文件说明 .opt 工程关于开发环境的参数文件。如工具条位置等信息; .aps (AppStudio File),资源辅助文件,二进制格式,一般不用去管他. .clw ClassWizard信息文件,实际上是INI文件的格式,有兴趣可以研究一下.有时候ClassWizard出问题,手工修改CLW文件可以解决.如果此文件不存在的话,每次用ClassWizard的时候绘提示你是否重建. .dsp (DeveloperStudio Project):项目文件,文本格式,不过不熟悉的话不要手工修改 ...

发布时间:2009年11月16日 标签: VC项目文件说明  

C++

C++的HelloWord

C++的HelloWord
#include using namespace std; int main() { cout << "Hello World" << endl; return 0; }

发布时间:2009年11月16日 标签: C  

«1»