I am using PokeIn and when I run the following call:
function OnSucceeded(messagefixed) {
if (PokeIn.IsConnected) {
pCall['Dummy'].SendMessageToAllUsers(messagefixed);
__doPostBack('LinkButton1', messagefixed);
}
else
alert("This client is not connected!");
}
It doesn't work... it just does a post back, however, if I comment out the __doPostBack it works perfectly fine and does the previous call.. am i doing something wrong?
The "SendMessageToAllUsers" is a function from the code-behind in VB.NET which is:
Public Sub SendMessageToAllUsers(ByVal stMessage As String)
CometWorker.Groups.Send("SSID:" & iSDID, ("UpdateTime('" & stMessage & "');"))
End Sub