To convert a string into an Enum:
myClass.GeomType = (Display.GeomType)Enum.Parse(typeof(Display.GeomType), myGeomType.ToString(), true);
To convert an Enum into a string:
string test = myClass.GeomType.ToString();
To convert a string into an Enum:
myClass.GeomType = (Display.GeomType)Enum.Parse(typeof(Display.GeomType), myGeomType.ToString(), true);
To convert an Enum into a string:
string test = myClass.GeomType.ToString();
A while ago I started using Google Analytics. It was really easy to set up, and it gives you useful information, like:
1) site usage statistics
2) visitor profile information (like location)
3) browser used
4) Navigation analysis
OK, I agree this is information that you could retrieve with other commercial software. However, Google Analytics provides you with easy-to-read reports, and it's free (of course, you should be willing to share the collected information with Google). You can even build custom reports!!
In fact, I just read something about Google Webmaster Tools. I'll give it a try!
Personally, I prefer AjaxPro. It gives you the flexibility of passing a dataset, and it also provides you a cleaner way to wrap the data you want to pass around. Check out AjaxPro here.
This article can help you: http://www.dalepreston.com/Blog/2005/02/passing-classes-from-webservices-part.html
Basically, you need to do the following in the file Refence.cs:
1) Delete any references to XmlIncludeAttribute
2) Qualify your classes with the correct namespace (if necessary)
3) Remove the custom class declaration (I had to do this since I already had the class defined in my VS solution. In other words, I had access to the custom class in both the client and server application).
The other option is to write the proxy classes yourself, but I didn't try this.
It's really simple, you just need to replace
WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
with
[WebServiceBinding(ConformsTo = WsiProfiles.None)]
I found this information here.