Click here to Skip to main content
15,888,527 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: If we click DropDownList items Automatically Select Second DropdownLIst in gridview? Pin
Ali Al Omairi(Abu AlHassan)26-Nov-12 19:21
professionalAli Al Omairi(Abu AlHassan)26-Nov-12 19:21 
GeneralRe: If we click DropDownList items Automatically Select Second DropdownLIst in gridview? Pin
Robert Bettinelli3-Dec-12 15:25
Robert Bettinelli3-Dec-12 15:25 
QuestionYahoo Wweather: XMLDOCUMENT, XPATHDOCUMENT or ... Pin
Jassim Rahma25-Nov-12 23:12
Jassim Rahma25-Nov-12 23:12 
QuestionClickonce deployment Pin
kareem olamilekan25-Nov-12 13:07
kareem olamilekan25-Nov-12 13:07 
AnswerRe: Clickonce deployment Pin
Keith Barrow26-Nov-12 2:40
professionalKeith Barrow26-Nov-12 2:40 
Questionwhy it's adding this to the database?!! Pin
Jassim Rahma24-Nov-12 11:16
Jassim Rahma24-Nov-12 11:16 
AnswerRe: why it's adding this to the database?!! Pin
jkirkerx24-Nov-12 18:10
professionaljkirkerx24-Nov-12 18:10 
Question(This webpage has a redirect loop) Problem Pin
Jassim Rahma24-Nov-12 11:05
Jassim Rahma24-Nov-12 11:05 
Hi,

Why I am getting the above error with this code?

C#
protected void btnSend_Click(object sender, EventArgs e)
{
    if (txtMessage.Text == "")
    {
        Session["message_title"] = "Error";
        Session["message_title_Color"] = Color.Red.ToArgb();
        Session["message_text"] = "Please enter your message.";
        Session["message_button_title"] = "Back";
        Session["message_button_url"] = Request.UrlReferrer.ToString();
    }

    create_support_ticket create_support_ticket = new create_support_ticket();
    create_support_ticket.add_support_ticket(txtSubject.Text, txtEmailAddress.Text, txtMessage.XHTML);
}


and this is the add_support_ticket:

C#
public void add_support_ticket(string support_incident_title, string email_address, string support_ticket_description)
{
    support_sql_connection = new MySqlConnection(ConfigurationManager.ConnectionStrings["SQLdb"].ConnectionString);
    support_sql_connection.Open();
    support_sql_command = new MySqlCommand("sp_add_support_ticket", support_sql_connection);
    support_sql_command.CommandType = CommandType.StoredProcedure;

    support_sql_command.Parameters.Add("param_support_incident_title", MySqlDbType.VarChar).Value = support_incident_title;
    support_sql_command.Parameters.Add("param_email_address", MySqlDbType.VarChar).Value = email_address;
    support_sql_command.Parameters.Add("param_support_ticket_description", MySqlDbType.Text).Value = support_ticket_description;

    int result_rows = support_sql_command.ExecuteNonQuery();

    support_sql_command.Dispose();
    support_sql_connection.Close();

    HttpContext.Current.Session["message_title"] = "Thank you";
    HttpContext.Current.Session["message_title_Color"] = Color.Blue.ToArgb();
    HttpContext.Current.Session["message_text"] = "We have recieved your feedback and we will get back to you as soon as possible.";
    HttpContext.Current.Session["message_button_title"] = "Back";
    HttpContext.Current.Session["message_button_url"] = "Home.aspx";

    HttpContext.Current.Response.Redirect("Message.aspx");
}

AnswerRe: (This webpage has a redirect loop) Problem Pin
jkirkerx24-Nov-12 18:21
professionaljkirkerx24-Nov-12 18:21 
SuggestionShould i change my asked question? Pin
anglo007223-Nov-12 22:29
anglo007223-Nov-12 22:29 
GeneralI'm find C# asp.net linkedin sample code Pin
Serdar Şengül22-Nov-12 21:14
Serdar Şengül22-Nov-12 21:14 
GeneralRe: I'm find C# asp.net linkedin sample code Pin
Richard MacCutchan22-Nov-12 23:57
mveRichard MacCutchan22-Nov-12 23:57 
GeneralRe: I'm find C# asp.net linkedin sample code Pin
CommDev8-Dec-12 23:23
CommDev8-Dec-12 23:23 
QuestionPaypal Website Payments Standard Integration using NVP Pin
Zaf Khan22-Nov-12 18:21
Zaf Khan22-Nov-12 18:21 
AnswerRe: Paypal Website Payments Standard Integration using NVP Pin
jkirkerx24-Nov-12 19:59
professionaljkirkerx24-Nov-12 19:59 
GeneralRe: Paypal Website Payments Standard Integration using NVP Pin
Zaf Khan24-Nov-12 22:07
Zaf Khan24-Nov-12 22:07 
GeneralRe: Paypal Website Payments Standard Integration using NVP Pin
jkirkerx25-Nov-12 8:08
professionaljkirkerx25-Nov-12 8:08 
GeneralRe: Paypal Website Payments Standard Integration using NVP Pin
Zaf Khan25-Nov-12 19:44
Zaf Khan25-Nov-12 19:44 
QuestionProblem With List View Pin
ggaurav bhandari22-Nov-12 2:09
ggaurav bhandari22-Nov-12 2:09 
AnswerRe: Problem With List View Pin
Parwej Ahamad22-Nov-12 6:08
professionalParwej Ahamad22-Nov-12 6:08 
GeneralRe: Problem With List View Pin
d0cvb22-Nov-12 10:28
d0cvb22-Nov-12 10:28 
GeneralRe: Problem With List View Pin
Parwej Ahamad22-Nov-12 18:35
professionalParwej Ahamad22-Nov-12 18:35 
QuestionChecking the size of a cookie Pin
suzyb22-Nov-12 1:46
suzyb22-Nov-12 1:46 
AnswerRe: Checking the size of a cookie Pin
Zaf Khan23-Nov-12 6:04
Zaf Khan23-Nov-12 6:04 
GeneralRe: Checking the size of a cookie Pin
suzyb23-Nov-12 9:49
suzyb23-Nov-12 9:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.