-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddQuestion.aspx.cs
More file actions
38 lines (35 loc) · 1.1 KB
/
AddQuestion.aspx.cs
File metadata and controls
38 lines (35 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
public partial class Default2 : System.Web.UI.Page
{
SqlConnection con;
SqlCommand cmd;
protected void Page_Load(object sender, EventArgs e)
{
if (Session["user"] == null)
{
Response.Redirect("/");
}
//Add your database string here
con = new SqlConnection("");
con.Open();
}
protected void Button2_Click(object sender, EventArgs e)
{
try
{
cmd = new SqlCommand("INSERT INTO [dbo].[Blog] ([UserID], [Question], [Code], [Status], [Tags], [Msg] , [Date]) VALUES ("+Session["userid"]+",'"+TextBox1.Text+"', '"+TextBox2.Text+"', 0, 'question','Pending' ,'"+DateTime.Now+"')", con);
cmd.ExecuteNonQuery();
con.Close();
Msg.Text = "Question Sucessfully Added";
Response.Redirect("AddQuestion.aspx");
}catch(Exception ex){
Msg.Text=ex.Message.ToString();
}
}
}