Error 12030, when calling a .NET web service from JavaScript
I was getting a error 12030, when I was calling a .NET web service from JavaScript. I was calling the web service on a other website then the website that was hosting the script. After
I was getting a error 12030, when I was calling a .NET web service from JavaScript. I was calling the web service on a other website then the website that was hosting the script. After
If you want to set the default document for you’re ASP .NET website or WCF webservice, you can use the Web.config. Add the following XML to you’re Web.config just before the end tag: </configuration> <system.webServer>
When you want to set you’re form as top most form, when it is hidden behind other windows, you can use the Form property TopMost. After setting the property to true, you should set it
If you want to listen to Internet Radio in XBMC, you can save one of the *.pls or *.m3u files on the site [http://www.harmfrielink.nl/wiki/index.php/Internet_Radio], to a location where XBMC can open the file. Like a
I was getting the error "Unrecognized attribute ‘targetFramework’. Note that attribute names are case-sensitive" on an ASP .NET 4.0 website. This was caused by the application pool targeting the wrong .net framework, change the application
If you want to disable or enable a specific network adapter from the command line, you can use: netsh interface set interface "Local Area Connection" DISABLED netsh interface set interface "Local Area Connection" ENABLED
Nice article, explaining OOP in JavaScript for C# developers http://blog.boyet.com/blog/javascriptlessons/javascript-for-c-programmers-prototypes-the-basics/
When I want to restore a Microsoft SQL Server database, I take the following steps: Copy the *.bak file to a local folder on the databaserver, like [C:\Temp] Open Microsoft SQL Server Management Studio and
If you are using a typed dataset (*.xsd) and you want to set it’s connection string, you can use the ObjectDataSource event OnObjectCreated. protected void MyObjectDaDataSource_OnObjectCreated(object sender, ObjectDataSourceEventArgs e) { if (e != null