Posted in .Net, Tip of Week, Visual Studio, tagged .Net, C#.Net, Developer, Development, Microsoft, Tip of Week, Visual Studio, Visual Studio Tip, Visual Studio Tip Of Week, Visual Studio tips, vs.net on December 29, 2008 | Leave a Comment »
Hi guys, do you know you can use already ready code inside your visual studio? Yes certainly you can insert code snippets into your code. You can invoke the “Insert Snippet” by using shortcut “ctrl k + ctrl x”.
You can download some of the code snippets from http://msdn.microsoft.com/en-us/vstudio/aa718338.aspx all you need to do is [...]
Read Full Post »
Posted in .Net, Development, Technical, Tip of Week, Visual Studio, tagged .Net, ASP.Net, C#.Net, Code defination window, Development, Tip of Week, Visual Studio, Visual Studio Tip, Visual Studio Tip Of Week, Visual Studio tips, vs.net on December 15, 2008 | Leave a Comment »
There are a few hidden gems in Visual Studio that are easy to overlook. One of those is the Code Definition Window (ctrl+\,ctrl+d or View – Code Definition Window).
The Code Definition Window will work in two different ways. The first is with your current code editing window. As you navigate your code, [...]
Read Full Post »
Posted in .Net, ASP.Net, Development, Visual Studio, tagged .Net, ASP.Net, C#.Net, content pages, MasterPages, MasterType on November 14, 2008 | Leave a Comment »
Assume in the master page, we have a user control which we need to access and set its visiblity from content page. We create a public property in the master page called controlVisiblity
public bool LoginControlVisible
{
get
{
return LoginControl.Visible;
}
set
{
LoginControl.Visible = value;
}
}
To gain access to the master page file from the content page, you just need to add the [...]
Read Full Post »
Posted in .Net, ASP.Net, Development, Technical, Visual Studio, tagged .Net, C#.Net, Linkbutton, Technology, Visual Studio on November 6, 2008 | 1 Comment »
I recently ran into a problem involving a dynamically generated linkbutton control inconsistently requiring two clicks in order to reach its Click handler method.
Most of the posts I found kept referring people to the page lifecycle, but in the end that had nothing to do with it. The issue was that the controls ID values [...]
Read Full Post »