Hello All,
I'm pretty sure why my inserts, updates and deletes aren't working.
II'm using the vb.net google example form working with .NET 2.0 'm
getting a
"[Line 30, Column 134, element link] Illegal character in path at
index 36: http://www.electroexchange.com/Ninja Gaiden - XBOX,itemname,
40,id,auctiondetails"
My status code is still 200 (success), but when I examine the
entry.batchdata.interrupt.reason bject I get the above.
Dim returnFeed As GBaseFeed = service.Batch(batchFeed, New
Uri(Me.batchFeed.Batch))
For Each entry As GBaseEntry In returnFeed.Entries
If entry.BatchData.Status.Code > 300 Then
Me.ItemCount.Text = "errors encountered"
Application.DoEvents()
Exit Sub
End If
Next
I imagine that I have may have to replace the spaces with %20, but I'm
not exactly where or on which object to do this.
Continuing to work away. Thanks for any input.