1
vote
RightNow CRM XML API - Anyone familiar with it?
I don't know RightNow CRM, but according to the documentation you can send the XML requests using HTTP post. The simplest way to do this in .NET is using the WebClient class. Alternatively you migh …
0
votes
Using ButtonField or HyperLinkField to write a cookie in ASP.NET
Since you set the DataKeyNames property of the DetailsView control, you can access the ArtID of the displayed item using the DetailsView1.DataKey(0). Alternatively you can use DetailsView1.Selected …
1
vote
“Could not load type” in web service converted to VB.NET
In VB.NET, namespace declarations are relative to the default namespace of the project. So if the default namespace for the project is set to X.Y, everithyng between Namespace Z and …
1
vote
C# to VB.Net: Why does this fail to compile when converted to VB?
I would suspect that the problem is that you used ValueType for as the name for one of the type parameters, which is an actual type in the .NET class library (System.ValueType). I can imagine that …
3
votes
Why am I getting this generic, non-descript error in GDI+ when trying to save a PNG?
According to this post, Bitmap.Save requires a seekable stream to …
