Click here to Skip to main content
15,902,299 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to bring up connection manager. Pin
Henry Minute27-Jun-09 10:41
Henry Minute27-Jun-09 10:41 
QuestionC#, how to Connect Win applicaion (C#) with Web applicaion (ASP.Net) ??? Pin
Mtyb27-Jun-09 4:04
Mtyb27-Jun-09 4:04 
AnswerRe: C#, how to Connect Win applicaion (C#) with Web applicaion (ASP.Net) ??? Pin
Not Active27-Jun-09 4:30
mentorNot Active27-Jun-09 4:30 
AnswerRe: C#, how to Connect Win applicaion (C#) with Web applicaion (ASP.Net) ??? Pin
onlyx27-Jun-09 4:34
onlyx27-Jun-09 4:34 
you can use webservice to communicate with server.
Create new web site project , Add new item , WebService (Asmx) and it gives you an example method with [WebMethod] attribute. You can add parameter to it and rename as you wish, then go to your win app project right click the project item and click Add Web Reference (Vs2005) or Add Service Reference (Vs2008) then write your asmx file's address into the box then give a name for your local service client object. Press ok to close dialog.
Write these to make SOAP request :
YourObjectName obj = new YourObjectName();
obj.YourWebMethodName(parameters);

i hope, you find this useful.

My Personal Blog about Software Developing
GeneralRe: C#, how to Connect Win applicaion (C#) with Web applicaion (ASP.Net) ??? Pin
Mtyb27-Jun-09 4:57
Mtyb27-Jun-09 4:57 
AnswerRe: C#, how to Connect Win applicaion (C#) with Web applicaion (ASP.Net) ??? Pin
onlyx27-Jun-09 5:26
onlyx27-Jun-09 5:26 
GeneralRe: C#, how to Connect Win applicaion (C#) with Web applicaion (ASP.Net) ??? Pin
Not Active27-Jun-09 6:16
mentorNot Active27-Jun-09 6:16 
GeneralRe: C#, how to Connect Win applicaion (C#) with Web applicaion (ASP.Net) ??? Pin
0x3c027-Jun-09 7:16
0x3c027-Jun-09 7:16 
GeneralRe: C#, how to Connect Win applicaion (C#) with Web applicaion (ASP.Net) ??? Pin
Not Active27-Jun-09 7:40
mentorNot Active27-Jun-09 7:40 
GeneralRe: C#, how to Connect Win applicaion (C#) with Web applicaion (ASP.Net) ??? Pin
0x3c027-Jun-09 8:48
0x3c027-Jun-09 8:48 
QuestionUsing .net Remoting on 2 computers..help please!? [modified] Pin
Member 465319827-Jun-09 3:32
Member 465319827-Jun-09 3:32 
AnswerRe: Using .net Remoting on 2 computers..help please!? Pin
SeMartens27-Jun-09 4:50
SeMartens27-Jun-09 4:50 
GeneralRe: Using .net Remoting on 2 computers..help please!? Pin
Member 465319827-Jun-09 5:15
Member 465319827-Jun-09 5:15 
GeneralRe: Using .net Remoting on 2 computers..help please!? Pin
Member 465319827-Jun-09 5:49
Member 465319827-Jun-09 5:49 
QuestionImage viewer over the entire screen (including the taskbar) Pin
xax27-Jun-09 1:38
xax27-Jun-09 1:38 
AnswerRe: Image viewer over the entire screen (including the taskbar) Pin
Pete O'Hanlon27-Jun-09 2:13
mvePete O'Hanlon27-Jun-09 2:13 
GeneralRe: Image viewer over the entire screen (including the taskbar) Pin
xax27-Jun-09 9:26
xax27-Jun-09 9:26 
GeneralRe: Image viewer over the entire screen (including the taskbar) Pin
Pete O'Hanlon28-Jun-09 10:08
mvePete O'Hanlon28-Jun-09 10:08 
GeneralRe: Image viewer over the entire screen (including the taskbar) Pin
xax1-Jul-09 7:51
xax1-Jul-09 7:51 
GeneralRe: Image viewer over the entire screen (including the taskbar) Pin
Pete O'Hanlon1-Jul-09 8:48
mvePete O'Hanlon1-Jul-09 8:48 
QuestionHow to sort dataview?and how to assign dataview to datatable? Pin
swetha_insoft27-Jun-09 0:43
swetha_insoft27-Jun-09 0:43 
AnswerRe: How to sort dataview?and how to assign dataview to datatable? Pin
padmanabhan N27-Jun-09 0:57
padmanabhan N27-Jun-09 0:57 
Questionhow to create dataview for datatable???? Pin
swetha_insoft26-Jun-09 23:49
swetha_insoft26-Jun-09 23:49 
AnswerRe: how to create dataview for datatable???? Pin
padmanabhan N26-Jun-09 23:56
padmanabhan N26-Jun-09 23:56 
QuestionCreate database Pin
Isaac Gordon26-Jun-09 22:06
Isaac Gordon26-Jun-09 22:06 

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.