level 7
欢迎各位学习ASP的同学和同的们加入,另招有能力当管理员的童鞋们!!!我们的宗旨有,相互学习,共同进步!!
2013年05月23日 13点05分
1
level 7
1.首先感谢加入本群的学友!
2.本群将打造ASP交流群NO.1
3.收有能力的管理。提供有偿奖励
4.待续…
2013年05月28日 14点05分
4
level 7
感谢新学友的加入,本群建立15天,已经接近100人了,继续欢迎ASP学员入住!
2013年05月30日 10点05分
5
level 1
protected void Button3_Click(object sender, EventArgs e)
{
int i_Age = 23;
double d_Weight, d_Height;
d_Weight = 63.5;
d_Height = 169.8;
WriteContent(i_Age, d_Weight, d_Height);
}
protected void WriteContent(int _age, double _weight, double _height)
{
string str_result;
str_result = "年龄" + _age.ToString() + "岁<br/>" +
"身高" + _height.ToString() + "CM<br/>" +
"体重" + _weight.ToString() + "KG";
Response.Write(str_result);
}
ASP新手求教.为什么上面定义的i_Age,为什么子程序是i_age 这两个Age是同一个吗
2014年10月20日 05点10分
12