标签:应用 debug xtu txt min http nta 项目 color
1. 代码端
protected void Page_Load(object sender, EventArgs e) { #if Debug this.txtUserId.Text = "admin"; this.txtPass.Attributes.Add("Value", "password"); #endif }
可以实现在开发调试状态下登录名密码自动填空,发布时if Debug块的内容是不会被编译进发布包的
Step2 设置项目启用对应的条件编码
标签:应用 debug xtu txt min http nta 项目 color
原文地址:https://www.cnblogs.com/zhuji/p/13673085.html