public string GetViewState(string data)
    
{
        
string pattern = "__VIEWSTATE\" value=\"(.*)[\"]";
        Regex r = new Regex(pattern, RegexOptions.IgnoreCase);
        MatchCollection mc 
= r.Matches(data);
        
foreach (Match m in mc)
        
{
            
return m.Groups[1].Value;
        }

        
return string.Empty;
    }