Monthly Archives: July 2007

Article: Overloading and Overriding in Visual Basic 2005

Hello,   My article on "Overloading and Overriding in Visual Basic 2005" got published here http://www.aspfree.com/c/a/VB.NET/Overloading-and-Overriding-in-Visual-Basic-NET-2005/   Enjoy…   thanks Jag 

Posted in VB.NET | Tagged | 12 Comments

Part 2: Programming Crystal Reports with ASP.NET 2.0: working with parameters

Hello guys,   My latest article focusing on Programming with Crystal Reports with ASP.NET 2.0 (part 2) got published here http://www.aspfree.com/c/a/ASP.NET/Working-with-Parameters-with-Crystal-Reports-and-ASP-NET-2-0/   enjoy and let me know the feedback.   Thanks Jag 

Posted in ASP.NET | Tagged , | 6 Comments

TIP: Open popup when clicked on a hyperlink in GridView: Part-2

Part – 2 of previous Post:   Part – 1 is here: http://jagchat.spaces.live.com/blog/cns!41050F68F010A662!841.entry   ——– UPDATE: Page refresh upon closing a popup is published here (along with source code) http://jagchat.spaces.live.com/blog/cns!41050F68F010A662!1184.entry  ——–   The Employee class got coded as following:   Imports … Continue reading

Posted in ASP.NET | Tagged , | Leave a comment

TIP: Open Popup when clicked on a hyperlink in GridView: Part-1

This is a small tip which demonstrates the functionality to open a popup (with details page) when the user clicks on any link in a particular column of GridView.  Part-1 contains code for default.aspx and Part-2 (next post) contains the rest … Continue reading

Posted in ASP.NET | Tagged , | Leave a comment

TIP: Executing Anoynymous Transact-SQL blocks from .NET

Following is the sample code which executes a Transact-SQL anonymous block dynamically using .NET:   Public Shared Function GetValueFromAnoymousBlock() As String     Dim s As String     s = "DECLARE @x int" & ControlChars.NewLine     s &= "DECLARE @y int" … Continue reading

Posted in VB.NET | Tagged , | Leave a comment