How can i add a line with arrow in graphiclayer instead of DefaultLineSymbol.See the code below.I saw the thread http://forums.arcgis.com/threads/47767-Drawing-a-line-with-arrow-in-web-application-with-C-and-silverlightBut how can i add ExtendedSymbols??? project in my webapplication(VB).Can anybdy help me in a detailed way????where i need to add this <extendedSymbols:ExtendedLineSymbol .....Please help meDraw line If recordcount > 1 Then Dim startPoint As New MapPoint(Startlong, Startlat) Dim endPoint As New MapPoint(Endlong, Endlat) Dim pointCollection As New ESRI.ArcGIS.Client.Geometry.PointCollection() pointCollection.Add(startPoint) pointCollection.Add(endPoint) Dim polyline As New ESRI.ArcGIS.Client.Geometry.Polyline() polyline.Paths.Add(pointCollection) Dim graphicLine As New Graphic() With { .Symbol = TryCast(LayoutRoot.Resources("DefaultLineSymbol"), Symbol), .Geometry = mercator.FromGeographic(polyline) } If (EventId1 = 12 And EventId2 = 14) Then ''excluding vehicle idle after journey end Else graphicsLayer.Graphics.Add(graphicLine) End If End If