Click here to Skip to main content
15,917,329 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Gridview values not save on postback Pin
Not Active21-Jul-10 8:58
mentorNot Active21-Jul-10 8:58 
Questionhow to create web organisation chart using mysql database in C#, ASP.net Pin
sr15921-Jul-10 2:47
sr15921-Jul-10 2:47 
AnswerRe: how to create web organisation chart using mysql database in C#, ASP.net Pin
Abhinav S21-Jul-10 3:36
Abhinav S21-Jul-10 3:36 
QuestionAnybody knows the proper website link of downloading and creating the web employee organisation chart application dynamically using mysql database in C#, ASP.net [modified] Pin
sr15921-Jul-10 18:53
sr15921-Jul-10 18:53 
Questionasp.net Pin
mudassir 198820-Jul-10 20:06
mudassir 198820-Jul-10 20:06 
AnswerRe: asp.net Pin
Richard MacCutchan20-Jul-10 21:32
mveRichard MacCutchan20-Jul-10 21:32 
AnswerRe: asp.net Pin
Abhinav S21-Jul-10 18:41
Abhinav S21-Jul-10 18:41 
Questionproblem in restoring mysql dump file using C#.net Pin
sr15920-Jul-10 1:10
sr15920-Jul-10 1:10 
i written below code to execute it is running but not restoring to database. If you know please reply me.
public void restore_data()
{

StreamReader file = new StreamReader("E:\\BackupMysql1\\travel.sql");



string cmd = string.Format(@"C:\Program Files\MySQL\MySQL Server 5.0\bin\mysql.exe -u{0} -p(1) -h{2} (3) < {4} ", "root","password1#", "192.168.2.50", "travel", "E:\\BackupMysql1\\travel.sql");

ProcessStartInfo proc = new ProcessStartInfo("cmd", @"/C " + cmd);
//proc.RedirectStandardInput = true;

//proc.RedirectStandardOutput = false;

proc.Arguments = cmd;

proc.UseShellExecute = false;

//Process p = Process.Start(proc);

string res;

//res = file.ReadToEnd();

//p.WaitForExit();

//file.Close();
Process p = new Process();
p.StartInfo = proc;
p.Start();
//res = file.ReadToEnd();
p.WaitForExit();


}
AnswerRe: problem in restoring mysql dump file using C#.net Pin
Richard MacCutchan20-Jul-10 2:09
mveRichard MacCutchan20-Jul-10 2:09 
AnswerRe: problem in restoring mysql dump file using C#.net Pin
Pete O'Hanlon20-Jul-10 4:25
mvePete O'Hanlon20-Jul-10 4:25 
Generalproblem solved thnk you for all who replied to me Pin
sr15921-Jul-10 22:33
sr15921-Jul-10 22:33 
AnswerRe: problem in restoring mysql dump file using C#.net Pin
Arjun Jutur Sathyanarayana8-Aug-10 22:48
Arjun Jutur Sathyanarayana8-Aug-10 22:48 
QuestionHow to encode an extended ASCII in .NET? Pin
Venkatesh Mookkan19-Jul-10 18:44
Venkatesh Mookkan19-Jul-10 18:44 
AnswerRe: How to encode an extended ASCII in .NET? Pin
Luc Pattyn19-Jul-10 23:06
sitebuilderLuc Pattyn19-Jul-10 23:06 
GeneralRe: How to encode an extended ASCII in .NET? Pin
Venkatesh Mookkan20-Jul-10 19:51
Venkatesh Mookkan20-Jul-10 19:51 
Questionasmx web service to access SQL server database. [modified] Pin
code4wcf19-Jul-10 4:20
code4wcf19-Jul-10 4:20 
AnswerRe: asmx web service to access SQL server database. Pin
Not Active19-Jul-10 5:38
mentorNot Active19-Jul-10 5:38 
GeneralRe: asmx web service to access SQL server database. [modified] Pin
code4wcf19-Jul-10 8:12
code4wcf19-Jul-10 8:12 
GeneralRe: asmx web service to access SQL server database. Pin
Not Active19-Jul-10 8:43
mentorNot Active19-Jul-10 8:43 
GeneralRe: asmx web service to access SQL server database. Pin
code4wcf19-Jul-10 9:58
code4wcf19-Jul-10 9:58 
GeneralRe: asmx web service to access SQL server database. Pin
Not Active19-Jul-10 10:16
mentorNot Active19-Jul-10 10:16 
GeneralRe: asmx web service to access SQL server database. Pin
Ennis Ray Lynch, Jr.19-Jul-10 10:30
Ennis Ray Lynch, Jr.19-Jul-10 10:30 
AnswerRe: asmx web service to access SQL server database. Pin
Luc Pattyn19-Jul-10 10:56
sitebuilderLuc Pattyn19-Jul-10 10:56 
GeneralRe: asmx web service to access SQL server database. Pin
Not Active19-Jul-10 11:32
mentorNot Active19-Jul-10 11:32 
GeneralRe: asmx web service to access SQL server database. Pin
code4wcf21-Jul-10 16:19
code4wcf21-Jul-10 16:19 

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.