Click here to Skip to main content
15,916,945 members
Home / Discussions / C#
   

C#

 
AnswerRe: Fest way to do persistence in c sharp ? Pin
PIEBALDconsult12-Jan-11 2:14
mvePIEBALDconsult12-Jan-11 2:14 
Question.NET framework required for the C# program Pin
linuxfedora11-Jan-11 14:13
linuxfedora11-Jan-11 14:13 
AnswerRe: .NET framework required for the C# program Pin
Luc Pattyn11-Jan-11 14:33
sitebuilderLuc Pattyn11-Jan-11 14:33 
GeneralRe: .NET framework required for the C# program Pin
linuxfedora11-Jan-11 14:53
linuxfedora11-Jan-11 14:53 
GeneralRe: .NET framework required for the C# program Pin
Luc Pattyn11-Jan-11 14:55
sitebuilderLuc Pattyn11-Jan-11 14:55 
AnswerRe: .NET framework required for the C# program Pin
#realJSOP12-Jan-11 2:45
professional#realJSOP12-Jan-11 2:45 
QuestionMessage Removed Pin
11-Jan-11 9:02
Alan Balkany11-Jan-11 9:02 
AnswerRe: Invalid URI: The format of the URI could not be determined Pin
SledgeHammer0111-Jan-11 9:32
SledgeHammer0111-Jan-11 9:32 
GeneralRe: Invalid URI: The format of the URI could not be determined Pin
Alan Balkany11-Jan-11 9:35
Alan Balkany11-Jan-11 9:35 
GeneralRe: Invalid URI: The format of the URI could not be determined Pin
Luc Pattyn11-Jan-11 9:43
sitebuilderLuc Pattyn11-Jan-11 9:43 
GeneralRe: Invalid URI: The format of the URI could not be determined Pin
Alan Balkany11-Jan-11 10:45
Alan Balkany11-Jan-11 10:45 
Questionhow can i use values of parameters in url for inserting in database? [modified] Pin
roebuck-code11-Jan-11 3:15
roebuck-code11-Jan-11 3:15 
AnswerRe: how can i use values of parameters in url for inserting in database? Pin
Pete O'Hanlon11-Jan-11 3:24
mvePete O'Hanlon11-Jan-11 3:24 
GeneralRe: how can i use values of parameters in url for inserting in database? Pin
roebuck-code11-Jan-11 20:06
roebuck-code11-Jan-11 20:06 
GeneralRe: how can i use values of parameters in url for inserting in database? Pin
Pete O'Hanlon11-Jan-11 23:18
mvePete O'Hanlon11-Jan-11 23:18 
GeneralRe: how can i use values of parameters in url for inserting in database? [modified] Pin
roebuck-code12-Jan-11 21:17
roebuck-code12-Jan-11 21:17 
like this?:

[WebMethod]
public void zakhire(string s,string d)
{

string sql = " insert into FX_Forecast2 (Symbol,A) values( '"+s+"','"+d+"')";

OpenDb();

cmd = new SqlCommand(sql, con);
cmd.ExecuteNonQuery();

con.Close();

}

do with writing this code and loading this url(http://aaaa.com/Default.asmx/zakhire?Symbol=+S+&A=+d;) these value will insert in database?

how can i run this url for test in visual studio?(not in mql4)

modified on Monday, January 17, 2011 2:07 AM

GeneralRe: how can i use values of parameters in url for inserting in database? Pin
roebuck-code23-Jan-11 2:32
roebuck-code23-Jan-11 2:32 
AnswerRe: how can i use values of parameters in url for inserting in database? Pin
hairy_hats11-Jan-11 3:37
hairy_hats11-Jan-11 3:37 
GeneralRe: how can i use values of parameters in url for inserting in database? Pin
roebuck-code11-Jan-11 20:07
roebuck-code11-Jan-11 20:07 
QuestionRe: how can i use values of parameters in url for inserting in database? Pin
Manfred Rudolf Bihy11-Jan-11 4:06
professionalManfred Rudolf Bihy11-Jan-11 4:06 
AnswerRe: how can i use values of parameters in url for inserting in database? Pin
roebuck-code11-Jan-11 20:10
roebuck-code11-Jan-11 20:10 
AnswerRe: how can i use values of parameters in url for inserting in database? Pin
SledgeHammer0111-Jan-11 9:33
SledgeHammer0111-Jan-11 9:33 
AnswerRe: how can i use values of parameters in url for inserting in database? Pin
roebuck-code12-Feb-11 20:01
roebuck-code12-Feb-11 20:01 
QuestionCannot derive from LinkedListNode<T> Pin
hairy_hats11-Jan-11 2:00
hairy_hats11-Jan-11 2:00 
AnswerRe: Cannot derive from LinkedListNode Pin
Not Active11-Jan-11 2:32
mentorNot Active11-Jan-11 2:32 

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.