Posts by Eduardo Bottcher • 709 points
10 posts
-
1
votes2
answers682
viewsA: View of XSD
I like the Altova Xmlspy. Another option would be the Liquid XML Studio.…
-
-1
votes1
answer982
viewsQ: Organizing Javascript Files in the Solution
Thinking about the concept of HTML 5 and modern web standards we have that in a web page, the HTML file should provide the structure, the CSS style file should provide the formatting and the…
javascriptasked Eduardo Bottcher 709 -
2
votes1
answer115
viewsQ: How to determine if a string value is in XML format?
I am connecting with an API, or service as you wish, which returns an xml when it finds data in the database, but unfortunately it returns a string if nothing is found or an error occurs. In my…
-
11
votes6
answers11946
viewsQ: Converting a string to int?
How best to convert a variable string for another variable of the type int?, namely, a nullable of int? Performance is very important in this case because I will be converting several values within…
-
3
votes3
answers6519
viewsA: How to get a difference between two dates?
Use the Datediff() function. For example: Dim diffDatas as Integer diffDatas = DateDiff("d", #30/01/2012#, #31/01/2014#) The first parameter represents which measure you want to calculate the…
-
10
votes3
answers12403
viewsA: Get MAC Address from application client machine
It is not possible to obtain this information, as neither Asp.net has access to this information from the client’s machine nor Javascript, as it is not trafficked as part of the Http protocol. The…
-
3
votes2
answers646
viewsA: How do I convert an Html string into an image file?
There is an external component called Htmlrenderer which may be what you need. In the code below I Gero a bitmap which is the rendering of an HTML table. In the example I am saving the file on disk,…
-
9
votes2
answers8587
viewsQ: Hosting Windows Azure website for free?
Windows Azure allows a 30-day trial time to test the platform, but what about after that? There is a free application hosting option. net, but it is not clear if Voce will have some cost or after…
windows-azureasked Eduardo Bottcher 709 -
7
votes3
answers6710
viewsQ: Checkboxlist on ASP.NET MVC
I need to create a checkboxlist on my page using MVC (Razor). I noticed that there is no Html helper like Html.Checkboxlistfor or anything like that. Someone has some example of how I could do that.…
-
10
votes2
answers1468
viewsQ: Entity Framework is saving duplicate values when saving entities with relationship N to N
I have an entity called Book that has among other attributes a list of categories. In my model a book can have multiple categories and vice versa, so we have a relationship N to N. EF therefore…