Click here to Skip to main content
15,911,646 members
Home / Discussions / C#
   

C#

 
QuestionDatabase Recommendation? Pin
Office Lineman18-Jan-06 7:16
Office Lineman18-Jan-06 7:16 
AnswerRe: Database Recommendation? Pin
Judah Gabriel Himango18-Jan-06 7:44
sponsorJudah Gabriel Himango18-Jan-06 7:44 
AnswerRe: Database Recommendation? Pin
Michael P Butler18-Jan-06 10:08
Michael P Butler18-Jan-06 10:08 
GeneralRe: Database Recommendation? Pin
Office Lineman18-Jan-06 11:28
Office Lineman18-Jan-06 11:28 
AnswerRe: Database Recommendation? Pin
zopiro18-Jan-06 11:47
zopiro18-Jan-06 11:47 
AnswerRe: Database Recommendation? Pin
OldDog.Net18-Jan-06 14:59
OldDog.Net18-Jan-06 14:59 
NewsRe: Database Recommendation? Pin
Office Lineman18-Jan-06 16:53
Office Lineman18-Jan-06 16:53 
QuestionHow to redirect user after the form data is submitted? Pin
Sue_NC18-Jan-06 6:58
Sue_NC18-Jan-06 6:58 
I know this sounds simple. And I have done numerious redirection using ASP, VB.NET. I am new to C# and I modify someone else code. I tried every single way I know and it still can't recgnize response.direct! BTW, this is asp.net 2.0, the code list below is reside /App_Code fodler. Not the direct code behind. Please help!

using (OleDbCommand command = new OleDbCommand("AddSite;", connection))
{
command.CommandType = CommandType.StoredProcedure;
command.Parameters.Add(new OleDbParameter("@skid", skid));
command.Parameters.Add(new OleDbParameter("@email", email));

connection.Open();
try
{
command.ExecuteNonQuery();
// Response.Redirect("Links.aspx", false);

}
catch (Exception ex)
{
throw (ex);
}

}
}

Sue
GeneralRe: How to redirect user after the form data is submitted? Pin
CWIZO18-Jan-06 7:01
CWIZO18-Jan-06 7:01 
GeneralRe: How to redirect user after the form data is submitted? Pin
Sue_NC18-Jan-06 7:15
Sue_NC18-Jan-06 7:15 
QuestionRe: How to redirect user after the form data is submitted? Pin
CWIZO18-Jan-06 7:17
CWIZO18-Jan-06 7:17 
AnswerRe: How to redirect user after the form data is submitted? Pin
Sue_NC18-Jan-06 7:27
Sue_NC18-Jan-06 7:27 
GeneralRe: How to redirect user after the form data is submitted? Pin
Sue_NC18-Jan-06 7:51
Sue_NC18-Jan-06 7:51 
GeneralRe: How to redirect user after the form data is submitted? Pin
DeepToot18-Jan-06 8:27
DeepToot18-Jan-06 8:27 
QuestionCopy format and all from Word Document Pin
DeepToot18-Jan-06 6:34
DeepToot18-Jan-06 6:34 
AnswerRe: Copy format and all from Word Document Pin
Dave Kreskowiak18-Jan-06 15:57
mveDave Kreskowiak18-Jan-06 15:57 
GeneralRe: Copy format and all from Word Document Pin
DeepToot19-Jan-06 2:35
DeepToot19-Jan-06 2:35 
QuestionForcing the dotted focus box on a button? Pin
melanieab18-Jan-06 5:34
melanieab18-Jan-06 5:34 
AnswerRe: Forcing the dotted focus box on a button? Pin
melanieab18-Jan-06 9:50
melanieab18-Jan-06 9:50 
AnswerRe: Forcing the dotted focus box on a button? Pin
microsoc18-Jan-06 14:50
microsoc18-Jan-06 14:50 
Questionbuilding a Binary Tree Class Pin
nickmacon18-Jan-06 5:30
nickmacon18-Jan-06 5:30 
AnswerRe: building a Binary Tree Class Pin
Pablo Hernandez Valdes18-Jan-06 6:16
Pablo Hernandez Valdes18-Jan-06 6:16 
QuestionExport treeview to xml Pin
Insolence18-Jan-06 5:15
Insolence18-Jan-06 5:15 
AnswerRe: Export treeview to xml Pin
zopiro18-Jan-06 11:51
zopiro18-Jan-06 11:51 
GeneralRe: Export treeview to xml Pin
Insolence18-Jan-06 14:00
Insolence18-Jan-06 14:00 

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.