Microsoft has just released an update to the MSDN Office 2010 Developer Training Course and downloadable training Kit. Updates include two new
training Modules around developing your own custom Outlook Social Connector Provider and connecting up Office with Azure Services. There is also new content for the Open XML 2.0 SDK, ...
Few causes for the above issue.
Make sure that you build your project in debug mode.
Project shall be in debug mode.
Check the compilation tag in config file. The attribute value should be true. If it is false, you cannot debug the application
<system.web>
<compilation debug="true" defaultLanguage="vb">
</system.web>
How to access a Javascript function located in the Parent page, from Popup using Javascript.
Posted On Friday, June 10, 2011 By Techreceipe.com. Under Javascript
How to access a Javascript function located in the Parent page, from Pop up using Javascript.
Window.Parent.MyFunction();
MyFunction - Name of the Javascript function in the Parent Page.
This code snippet helps to color the Listbox items in Asp.Net.
Code:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
'Populate the Listbox with Items
Dim items As String() = {"Red", "Blue", "green"}
...
Recently I setup a Virtual Directory for Asp.net 2.0 Application in IIS. After setting I tried to browse the site
and got this error message.
The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in your web ...
If you want to reverse a string using .Net , you have to use the Visual Basic left over of StrReverse Function.
I have string like "VB is Great" and I want to reversed strings as "Great is VB". Now I use the StrReverse Function.
Dim str As String = "VB is Great"
MessageBox.Show(StrReverse(str))
Output:
taerG ...
Currency formatting is very simple using .Net. You can use the Double.Tostring method to format a
double value into a currency symbol.
Dim dblSalary As Double = 10525.01
Response.Write(dblSalary.ToString("C2"))
After executing the above code,I got the outputs as $10,525.01. Let us analyse the code.
The Double.Tostring method accepts parameter "C2", where the "C" stands for ...
List week days using .Net
Posted On Monday, June 6, 2011 By Techreceipe.com. Under Visual Studio
The System.Globalization.CultureInfo provides information about a particular culture. We can utilize these class to get the list of week days for a specific culture.
Dim culture As Globalization.CultureInfo =
...
Important: ASP.NET Security Vulnerability
A few hours ago we released a Microsoft Security Advisory about a security vulnerability in ASP.NET. This vulnerability exists in all versions of ASP.NET.
This vulnerability was publically disclosed late Friday at a security conference. We recommend that all customers immediately apply a ...
2 Free – VS 2010 Ultimate with MSDN Giveaway(Closed)
Posted On Monday, June 6, 2011 By Techreceipe.com. Under Visual Studio 2010
2 Free - VS 2010 Ultimate with MSDN Giveaway
Here is your chance to Win Microsoft Visual Studio 2010 Ultimate with MSDN subscription
which is worth $11,899. We have two copies to give away for our site members.
How to Win VS 2010 Ultimate
1. Submit your articles, code snippets and interview questions.
2. Refer ...

