當點擊“登錄”按鈕後,頁面上方顯示“某某某用戶自動登錄的天數為: 天”。 “天”實際為0、1、3、7、30、365天其中之一。
protected void Button1_Click(object sender, EventArgs e)
{
ClientScript.RegisterStartupScript(this.GetType(), "", "alert('TextBox1.Text+用戶自動登錄的天數為:+ DropDownList1.Text+天。');", true);
那你需要判斷
if (DropDownList1.Text == "一天")
x = 1;
if (DropDownList1.Text == "三天")
x = 3;
...
ClientScript.RegisterStartupScript(this.GetType(), "", "alert('用戶自動登錄的天數為: "+ x + "天。');", true);