Read values from Comma-Delimited file using VB.Net – Part 2
Posted On Thursday, August 18, 2011 By Techreceipe.com. Under Visual Studio, Visual Studio 2010 Tags: asp.net, Visual Studio, vs2010
The previous article Part1 explains the method of reading a comma-delimited file using VB.Net.
If the file has some comment tokes like
Dim parser As New FileIO.TextFieldParser("D:\Test.txt")
Dim rows As String()
parser.SetDelimiters(",")
parser.TextFieldType = FileIO.FieldType.Delimited
parser.CommentTokens = New String() {"'"}
Try
'Try to read the file
'Read the Header data
rows = parser.ReadFields
'print the Header
For Each str As String In ...
HyperLink vs LinkButton in Asp.Net
Posted On Wednesday, June 1, 2011 By Techreceipe.com. Under Asp.Net Tags: asp, asp.net, hyperlink, linkbutton, vs2010
In many of the forums I have seen developers asking where to use Link Button and Hyperlink.
This articles covers some of the points to taken care while choosing between these two controls.
HyperLink :
Hyperlink control create a link in your forms . when clicking that link the user will be
redirected to ...
Tool Tip for DropDown List Items
Posted On Wednesday, June 1, 2011 By Techreceipe.com. Under Asp.Net Tags: asp, asp.net, javascript, vs2010
Asp.Net Drop Down List doesn't support the tool tip property.
You have designed a Page with Drop Down List and the width of the items exceeds the width of the Drop Down List.
In this case the user has to select the item to see the full text. This makes users annoying ...

