本文介绍了提交问题后更改按钮的颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨先生

i正在进行在线考试系统项目,现在我想在提交问题后更改按钮的颜色,我在每个问题上有一个按钮,在一张纸上有20个问题所以请帮助我先生...

thanx

hi sir
i am working on online examination system project and now i want to change the color of button after submitted a question and i have one button for each question and 20 question in a single paper so please help me sir...
thanx

推荐答案

protected void Submit_Click(object sender, System.EventArgs e)
   {
........
........
.......
Button1.BackColor = System.Drawing.Color.LightCoral;



}


}


这篇关于提交问题后更改按钮的颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 00:19