Quantcast
Channel: March 2008 – Michael Freidgeim's Blog
Browsing latest articles
Browse All 8 View Live

AppendIfNotContains string helper method

I’ve created a helper function, that allows me to set extra CSS class name(space separated) public static string AppendIfNotContains(string str, string sToAppend, string delimeter)             {...

View Article


my ASP.NET ListControlHelper class

Previously I’ve posted a few Helper Classes . This post describes my ListControlHelper class    using System.Net;     using System.IO;     using System.Diagnostics;     using...

View Article

my GridViewHelper class.

Previously I’ve posted a few Helper Classes . This post describes my GridViewHelper class. using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security;...

View Article

Unable to set Gridview HyperLinkField Header using DataBinding

I’ve tried to set Gridview HyperLinkField Header text to some value using DataBinding <%# Eval(“Rating”) %> ,but it caused error: ‘Gridview :Databinding expressions are only supported on objects...

View Article

Remove empty lines in text using Visual Studio.

Visual Studio has ability to delete empty lines in replace operation using regular expressions. 1.Click Ctrl-H (quick replace) 2. Tick “Use Regular Expressions” 3. In Find specify ^$n 4. In Replace box...

View Article


Create multi-row gridview Header with buttons in header

I found a few articles , that try to create multi-row gridview Header http://forums.asp.net/p/1058306/1517774.aspx#1517774 http://blogs.msdn.com/mattdotson/articles/541795.aspx   All solutions suggest...

View Article

Validation of viewstate MAC failed when using asp.timer to trigger UpdatePanel

I have a page with UpdatePanel and ASP:Timer, that refreshs the UpdatePanel every minute.   It was noticed that after new release after the first refresh any postback causes “Validation of viewstate...

View Article

Articles about Working with multiple checkboxes in GridView

I wanted to have multiple checkboxes in GridView . Below are a few links, that I’ve read before implemented my user control. Checking All CheckBoxes in a GridView Using Client-Side Script and a Check...

View Article

Browsing latest articles
Browse All 8 View Live