Vistual Studio 条件编辑应用
作者:互联网
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 设置项目启用对应的条件编码
标签:登录名,Vistual,EventArgs,编辑,Add,Studio,Step2,Debug,填空 来源: https://www.cnblogs.com/zhuji/p/13673085.html