To Use Csc.exe In C:WindowsMicrosoft.NETFrameworkv2.0.50727?
Jan 18, 2010If I want to write simple c# apps without installing an SDK of any kind, is there any reason not to?
View 2 RepliesIf I want to write simple c# apps without installing an SDK of any kind, is there any reason not to?
View 2 Repliesi am using vs 2008 and ajax when i execute my application i had this error messageCannot execute a program. The command being executed was "C:WINDOWSMicrosoft.NETFrameworkv3.5vbc.exe" /noconfig @"C:WINDOWSMicrosoft.NETFrameworkv2.0.50727Temporary ASP.NET Filesestwebsite_componenteditor2842527e6911f45cp1uobvpm.cmdline".
View 3 Repliessome reason that I can't figure out, the iisreset command prohibits the webserver extension ASP.NET 2.0.50727 and this prevents the site being accessible.I would have to manually allow the webserver extension so that the site becomes accessible.This happens only on one of the load balanced servers.The rest work fine without any issues.
View 3 RepliesI have an asp.net page that's taking longer to render than we'd like. I've been doing some manual Debug.WriteLine type performance testing and I noticed some statements in my output window that look something like:
'aspnet_wp.exe' (Managed (v2.0.50727)): Loaded 'jpgxkjws'
These statements are showing up in my output window when I'm doing "xml stuff" in my code. For instance I see one of these types of statements getting written to my output window when I execute the following line of code (sandwiched between two Debug.WriteLine statements):
System.Diagnostics.Debug.WriteLine("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! In ToXml(), about to call XMLSerializer: " & Now.ToString("hh:mm:ss.ff"))
xmlSerial = New Xml.Serialization.XmlSerializer(Me.GetType, xmlRoot) 'See a "loaded statement when this executes
System.Diagnostics.Debug.WriteLine("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! In ToXml(), finished call XMLSerializer: " & Now.ToString("hh:mm:ss.ff"))
These statements are pretty expensive, averaging about .75 seconds apiece. Any idea what these are and if it's possible to speed them up? Are these just statements just a artifact of my running my site in debug mode?I was initially perplexed that I couldn't find these files anywhere, but I ran procmon while debugging my asp.net site and did find where these files are located, they are located in
C:Documents and SettingsmyhostnameASPNETLocal SettingsTemp
I' m simply trying to import code from one namespace I've created into another .net application. I add the reference into my other application, but when I do a build, I get the following error.
Could not find file 'Microsoft.Windows.CommonLanguageRuntime, Version=2.0.50727.0'
This only happens on a particular namespace I've created, all others work fine.
When I create an entry in the Application event log with source "ASP.NET 2.0.50727.0" and Event ID 0, the following text is added to the top of the entry's text:
[code]....
The following information was included with the event:
Where do I learn what event IDs can be found? Put another way, where do I learn what event IDs I'm allowed to use?