Hello...Advance thanks...Please help me to solve the issue specified below I drw a point on my map using the function below.Now i want to save these points long and lat to DB for future reference.How can i retrive point geometry?Help me for this Pleaserivate Sub MyDrawObject_DrawComplete(ByVal sender As Object, ByVal args As ESRI.ArcGIS.Client.DrawEventArgs) Dim graphicsLayer As GraphicsLayer = TryCast(MyMap.Layers("MyGraphicsLayer"), GraphicsLayer) Dim graphic As New ESRI.ArcGIS.Client.Graphic() With { .Geometry = args.Geometry, .Symbol = _activeSymbol } graphicsLayer.Graphics.Add(graphic) End Sub