0
votes
0answers
8 views
Parsing enumeration member values when using JSON
Microsoft reports that Enumeration member values are treated as numbers in JSON.
We're building the WebMethod output into a table by hand, so converting the member number into it's name on the client …
2
votes
4answers
42 views
Do dotnet projects in Visual Studio always compile into a single file?
This is one of those things that is so simple that no one ever just comes out an says it in any of the tutorials I've read. I've been creating a few stand alone .NET applications as well as a few DLL …
0
votes
1answer
8 views
How to Enumerate variable XML Document in .NET using Linq to XML
Hi,
I'm submitting a command to a ssh session and getting an XML response back which is variable depending on the type of query I'm running. I get the following type of XML returned...
…
0
votes
1answer
25 views
How to run a .NET Class Library on a Go Daddy server?
Thanks to the awesome people that answered my previous post, I was able to make a .NET Class Library and run the library from a button on my webpage.
The program is designed to run on the server …
0
votes
0answers
7 views
Bad http connection (400) from Simple Native Iphone App to test .net Web Service
Dear all,
I have written a simple hello world .net web service which will accept 2 parameters and return the parameters as a string.
The web service is hosted by IIS on a windows xp pc.
I am able to …
1
vote
0answers
13 views
Adding a custom file format to the Word 2007 save as dialog
I want to add the option to export to a new file format in Word 2007. Ideally it would be nice if the option could be another file format in the Word 2007 Save As dialog that the user could select in …
0
votes
1answer
14 views
SubSonic - Serializing Classes with Nullable types and collections?
Using SubSonic v2.x: The first issue is the error discussed here:
Server Error in '/......' Application.
Cannot serialize member '.....' of type System.Nullable
I'm not sure where to place the code …
0
votes
7answers
98 views
C# - How to print objects in an array using for/foreach?
I have a homework assigment to iterate through an object array and print out these objects using for and foreach. I'm stuck on how to do that.
Questions
When you use a foreach loop, don't you have …
0
votes
7answers
81 views
How can I best avoid using reserved or key words in my language or framework?
Naming things is hard. When naming my classes, variables, and methods I strive to avoid collisions with reserved words or keywords in my languages (MSSQL, VB.NET or C#, HTML, CSS, jQuery) and …
0
votes
1answer
18 views
How do I CheckOnClick in a CheckedListbox but only when over the checkbox?
I have a CheckedListBox. I would like to be able to select items when I click on the text but check/uncheck them when I click on the checkbox area on the left. If I set CheckOnClick then the items …
0
votes
1answer
18 views
blob download counter in .net
Hi
I need to add a download counter to know how many times my BLOB data is read and displayed from the database (to determine traffic). How and where can I add this counter? Many thanks!
I have a …
1
vote
3answers
74 views
Is there a C# equivalent of Sonar?
Is there a C# equivalent of Sonar?
1
vote
2answers
82 views
Regular expression help
Need regular expression to change below url
abc.aspx?str=blue+lagoon&id=1234
to
/blog/blue-lagoon/
Appreciate all your help.
0
votes
1answer
12 views
Splitting a multipage TIFF image - With .NET and IronPython
I had a scanned multipage TIFF image and needed to split each page out into individual files.
This is easy to do in by leveraging the .NET framework and C#, but since I did not have all the …
5
votes
3answers
57 views
Detecting grayscale images with .Net
I am scanning documents to JPG images. The scanner must scan all pages as color or all pages as black and white. Since many of my pages are color, I must scan all pages as color. After the scanning …
