本文介绍了如何使用asp.net c在文本框中显示日期#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

先生,

请解释如何使用asp.net c#在文本框中显示日期?

sir,
please explain how to visible date in textbox using asp.net c#?

推荐答案

myDateTextBox.Text = DateTime.Now.ToString();


YourTextBox.Text = DateTime.Now.ToString();


myTxt.Text = DateTime.Now.ToString();
myTxt.Text = DateTime.Now.ToShortDateString();



你还能用 []。

只需获取日期并将其分配给TextBox即可。就这么简单:)



-KR


And what not you can do with DateTime.Now[^].
Just get the date and assign it to the TextBox. As simple as that :)

-KR


这篇关于如何使用asp.net c在文本框中显示日期#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 17:02