5
votes
Is it possible to compile .NET IL code to machine code?
There are some third party tools that do this, e.g.
http://www.remotesoft.com/linker/
…
-1
votes
WebBrowser Control from .Net — How to Inject Javascript?
You can use the HTMLGenericControl to do this, e.g.
HtmlGenericControl Include = new HtmlGenericControl("script");
Include.Attributes.Add("type", "text/javascript");
Include.InnerHt …
0
votes
Anti virus integration with .net application
Why not install the antivirus software on the receiving server? That way you could keep the definitions updated, which may not happen on the uploading client app.
…
7
votes
How to convert a string “yyyy-MM-ddZ” to a date time with .net?
It's interpreting the date as midnight Zulu (GMT) time and then converting it back to your local time zone. If you're in the States that would be between 3:00PM to 7:00 PM in the previous day.
…
4
votes
IIS API - Create virtual directories?
Evidently you can also do this via PowerShell scripting:
$objIIS = new-object System.DirectoryServices.DirectoryEntry("IIS://localhost/W3SVC/1/Root")
$children = $objIIS.psbase.chil …
1
vote
Is a formal application framework too much?
The cons of the framework are the fact
that you are at the mercy of how the
creator implements changes and
technology and all the many features
that you do not use.
…
0
votes
How do I release sql express database?
There's an example in this post that shows how to back up a SQL Express database within a prog …
11
votes
Do modern-day VisualStudio .NET projects still use Visual SourceSafe, or SVN?
We use SVN for our .Net projects, using the Tortoise SVN client. There are also tools to integrate with Visual Studio such as …
4
votes
Is .NET System.Net.CookieContainer thread safe?
From the horses mouth:
Thread Safety
Any public static (Shared …
2
votes
What are some good resources to look into synchronizing contact data on mobile devices with a .NET application?
There are API's going to/from .Net and gmail, perhaps you could use a central Google account as the conduit:
…
0
votes
Can a Programmer that is ‘Smart’ and “Gets Things Done” work in a foreign programming language?
For the web these sites are good for getting started:
http://www.asp.net/
This will be relevant based on your experience with MVC: …
1
vote
How do you explain to a sales person that programming is really difficult and takes time.
This one may be a good book for non-programmers to understand some of these issues and pitfalls of runaway requirements:
…
2
votes
Some suggestions on which .NET ORM to look at learning
Many discussions on this topic on Stack Overflow:
What object mapper solut …
