大家好,希望你没事:) 我需要帮助我想从下拉列表中选择日期,星期和月份更改日期,并从文本框输入天数,周数和月数,如果我输入数字但不工作的日期,这里的所有代码都正常工作或者从选择下拉列表中更改日期 这是javascript
<script>
function addDate() {
debugger;
//Get the entered datevalue
var enteredDateVal = new moment(document.getElementById("TextBoxStartDate").value);
//Get the days to add
var numberofDays = document.getElementById("TextBoxpredictDays").value
//Add the days using add method in moment.js
enteredDateVal.add("Days", parseInt(numberofDays));
//Assign the value in textbox
document.getElementById("TextBoxPredictedClosing").value = enteredDateVal.format("DD-MM-YYYY");
}
</script>
这是我的按钮点击代码,但我想在下拉列表中如何做到这一点我不知道:(
protected void Button1_Click(object sender, EventArgs e)
{
DateTime dtval = DateTime.Parse(TextBoxStartDate.Text);
//Add values here
DateTime formatteddays = dtval.AddDays(Int16.Parse(TextBoxpredictDays.Text));
TextBoxPredictedClosing.Text = formatteddays.ToString("DD-MM-YYYY");
}
先谢谢
答案 0 :(得分:0)
我想到的第一件事是Combobox。如果我明白你的意思,那就是我这样做的方式。
public partial class Form1 : Form
{
public static ComboBox DropDown;
public Form1()
{
InitializeComponent();
string[] listMonth = { "01", "02", "03", "04" };
DropDown = new ComboBox();
DropDown.Parent = this;
DropDown.Location = new System.Drawing.Point(50, 50);
DropDown.Items.AddRange(listMonth);
}
private void button1_Click(object sender, EventArgs e)
{
string dropDownText = DropDown.Text;
}
}