Click here to Skip to main content
15,914,419 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionUpdate panel in asp.net Pin
anushh10-Sep-09 20:00
anushh10-Sep-09 20:00 
AnswerRe: Update panel in asp.net Pin
N a v a n e e t h10-Sep-09 20:08
N a v a n e e t h10-Sep-09 20:08 
GeneralRe: Update panel in asp.net Pin
mr_muskurahat10-Sep-09 20:12
mr_muskurahat10-Sep-09 20:12 
GeneralRe: Update panel in asp.net Pin
sashidhar10-Sep-09 20:31
sashidhar10-Sep-09 20:31 
GeneralRe: Update panel in asp.net Pin
anushh10-Sep-09 20:50
anushh10-Sep-09 20:50 
AnswerRe: Update panel in asp.net Pin
Christian Graus10-Sep-09 20:55
protectorChristian Graus10-Sep-09 20:55 
QuestionASP.Net web service from VB6 application Pin
Member 333438510-Sep-09 19:55
Member 333438510-Sep-09 19:55 
AnswerRe: ASP.Net web service from VB6 application Pin
sashidhar10-Sep-09 20:06
sashidhar10-Sep-09 20:06 
I googled It And Got This It MAy Help U ..!
in my Web Service Class(C#): 
[serialize()] 
public class people 
{ 
public string ID; 
public string firstname; 
public string lastname; 
...... 
} 
[WebMethod] 
public people Get_People() 
{ 
//retrieve one row data into data from database 
people p = new people(); 
p.ID = data[0]; 
p.firstname=data[1]; 
p.lastname=data[2]; 
.... 

return p; 
} 

The url of the web service is "http://localhost/service/service.asmx". 

Before I create a vb project I install the Microsoft soap toolkit Version 3 SDK.
Then I create the vb project and add the references "Microsoft soap type library v3.0" to the project. 
Here is Code of VB: 

Private Sub Command1_Click() 
Dim soapClient3 
Set soapClient3 = CreateObject("MSSOAP.SoapClient30") 
On Error Resume Next 
Call soapClient3.MSSoapInit(WSURL, "", "") 
If Err <> 0 Then 
MsgBox Err.Description 
End If 
Dim obj as Variant 
obj = soapClient3 .Get_People() 
If Err <>0 Then 
MsgBox Err.Description 
End If 
Set soapClient3 = Nothing 
End Sub 




Try To Post Your Question In Vb6 Blog.This is nothing to do with asp.net and first try google it

If It Helps Click It as Answer

AnswerRe: ASP.Net web service from VB6 application Pin
Christian Graus10-Sep-09 20:52
protectorChristian Graus10-Sep-09 20:52 
QuestionI really wanna make text with an editor for asp.net Pin
lsh486love10-Sep-09 19:14
lsh486love10-Sep-09 19:14 
AnswerRe: I really wanna make text with an editor for asp.net Pin
N a v a n e e t h10-Sep-09 19:31
N a v a n e e t h10-Sep-09 19:31 
GeneralRe: I really wanna make text with an editor for asp.net Pin
sashidhar10-Sep-09 19:46
sashidhar10-Sep-09 19:46 
AnswerRe: I really wanna make text with an editor for asp.net Pin
Arun Jacob10-Sep-09 19:45
Arun Jacob10-Sep-09 19:45 
AnswerRe: I really wanna make text with an editor for asp.net Pin
Christian Graus10-Sep-09 21:01
protectorChristian Graus10-Sep-09 21:01 
QuestionASP.NET Login Controls and Client Application Services... Pin
Illegal Operation10-Sep-09 18:16
Illegal Operation10-Sep-09 18:16 
QuestionComments in ASP.NET Pin
amittinku10-Sep-09 17:41
amittinku10-Sep-09 17:41 
AnswerRe: Comments in ASP.NET Pin
Christian Graus10-Sep-09 17:44
protectorChristian Graus10-Sep-09 17:44 
QuestionEval vs bind Pin
amittinku10-Sep-09 17:37
amittinku10-Sep-09 17:37 
AnswerRe: Eval vs bind Pin
Christian Graus10-Sep-09 17:46
protectorChristian Graus10-Sep-09 17:46 
QuestionWhat's the purpose of datavaluefield and datatextfield Pin
amittinku10-Sep-09 17:34
amittinku10-Sep-09 17:34 
AnswerRe: What's the purpose of datavaluefield and datatextfield Pin
Christian Graus10-Sep-09 17:45
protectorChristian Graus10-Sep-09 17:45 
QuestionASP.NET MVC Accounts or My own user management? Pin
Quake2Player10-Sep-09 16:46
Quake2Player10-Sep-09 16:46 
AnswerRe: ASP.NET MVC Accounts or My own user management? Pin
Christian Graus10-Sep-09 17:07
protectorChristian Graus10-Sep-09 17:07 
Questionplay video clips sequentially Pin
zeeShan anSari10-Sep-09 11:13
zeeShan anSari10-Sep-09 11:13 
AnswerRe: play video clips sequentially Pin
Christian Graus10-Sep-09 11:35
protectorChristian Graus10-Sep-09 11:35 

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.