Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Web Services > Asynchronous comsuming

Reply
Thread Tools

Asynchronous comsuming

 
 
filip stas
Guest
Posts: n/a
 
      07-10-2003
Doesn't asynchronous consuming of a webservice work with asp.net ?

i have following code
Private Sub LinkButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LinkButton1.Click

Dim cb As New AsyncCallback(AddressOf CBSmsSendfunction)

Dim header As New localhost.SMSheader

With header

..send_kopie = copy_send.Text

..show_status = display_status.Checked

..use_flash = use_flash.Checked

End With

sms.SMSheaderValue = header

sms.BeginSend(Textbox2.Text, TextBox1.Text, Textbox3.Text, u.GebruikerID, cb, 0)

Label1.Text = "Bezig met verzenden ..."

End Sub

Sub CBSmsSendfunction(ByVal res As IAsyncResult)

Label1.Text = sms.EndSend(res)

End Sub

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
asynchronous counter an Xilinx FPGA for a newbie Georges Konstantinidis VHDL 12 08-04-2006 04:42 AM
Will this "asynchronous handshaking" feasible in real circuits? HUANG Huan VHDL 2 02-24-2004 09:07 PM
Coding an Asynchronous state machine Jamie VHDL 13 10-23-2003 08:41 AM
Send a PULSE on input change, asynchronous Jamie VHDL 4 10-22-2003 06:57 AM
asynchronous design Amir VHDL 3 10-10-2003 02:10 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57