Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
736 views
in Technique[技术] by (71.8m points)

asp.net - Why do i get error message when i loop

' the loop statement 
do while messagessent < messages submitted 
    messagessent = messagesent + 1
    Dim client  = New RestClient("https://api.infobip.com/sms/1/text/multi")

    foneno = trim(foneno.Replace(",",""","""))

    Dim request = New RestRequest(Method.POST)
    request.AddHeader("accept", "application/json")
    request.AddHeader("content-type", "application/json")
    request.AddHeader("authorization", "Basic NutrtryoYW5nZW1lMUE=") 'base64   of usename and password
    request.AddParameter("application/json","{""messages"":[{""from"":""" +  senderid + """,""to"":["""& mobileno &""" ],""text"":""" + message + """}]}",ParameterType.RequestBody)

    Dim eresponse As IRestResponse = client.Execute(request)
loop
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I'm not sure what other issues the code has but from what i can see here you have two obvious errors.

  1. The loop conditional statement uses a variable messages submitted i doubt this is valid.
  2. You are processing a variable foneno and using a different one in the code below it mobileno. obviously one of these 2 haven't been declared.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...