Silverlight runtime issues

3918
0
01-30-2015 02:07 PM
ChadBartman
New Contributor


I am working on an Silverlight arcserver application that transfers SQL data table over to a geodatabase to be used for symbology/labels.

I manage to get part of the information moved over but not all of it.

Field_Name, and the Field_ID works fine but the other three will not transfer over to the feature class table. The process is complete after a polygon is placed on the map.

What am I doing wrong?

 

  

graphic.Attributes.Add("Field_Name", tbxFieldNum.Text);

featurelayer.Graphics.Add(graphic);

graphic.Attributes.Add("Field_ID", RunTime._FieldID);

featurelayer.Graphics.Add(graphic);

graphic.Attributes.Add("HabitatType", RunTime._FieldPlannedHabitatTypeCode);

featurelayer.Graphics.Add(graphic);

graphic.Attributes.Add("Tract_ID", RunTime._TractID);

featurelayer.Graphics.Add(graphic);

graphic.Attributes.Add("TractName", RunTime._TractName);

featurelayer.Graphics.Add(graphic);

Chad

0 Kudos
0 Replies