摘要:
private void Check() { int currentNum = CurrentNum; if (currentNum >= totalCount) { return; } DataGridViewRow row = this.dataGridView1.Rows[currentNum]; row.Cells["ID"].Style.BackColor = Color.Green; s... 阅读全文
摘要:
很多时候,我们希望用到asp.net的membership,这样就可以快速的处理角色验证之类的问题。而且客服端能够与bs系统共用一套账户。webservice里面的proxy类继承自WebClientProtocol,而在WebClientProtocol里面包含两个方法protected virtual WebRequest GetWebRequest(Uri uri);protected virtual WebResponse GetWebResponse(WebRequest request);我们应该很清楚,调用webservice本质上也是一个http的Post请求,和普通的html 阅读全文