本文介绍了从db显示文本框中的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我们如何在文本框中实现最高值,在页面加载中增加1
我尝试过:
How can we implement a highest value in textbox which is increment by 1 in page load
What I have tried:
protected void Page_Load(object sender, EventArgs e)
{
if (!this.Page.User.Identity.IsAuthenticated)
{
FormsAuthentication.RedirectToLoginPage();
}
txt_id= ('SELECT MAX(unitid) + 1 from tblunitmaster');
}
推荐答案
txt_id= ('SELECT MAX(unitid) + 1 from tblunitmaster');
- >你必须使用SQL服务器连接来连接数据库。
如果这个dint解决了你的目的请回复并解释你的要求。清晰。在此先感谢:)
--> you have to use SQL server connection to connect to the database.
If this dint solve your purpose please reply and explain you req. clearly. Thanks in advance :)
这篇关于从db显示文本框中的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!