Friday, May 18, 2012

getting querystring from string

I was having a URL as string
e.g. string videoURL="http://www.youtube.com/watch?v=Rz-Lejndrys";

So now if I wanted to get the value of querstring v. We can get sub-string of videoURL or there is one more method to fetch value of v from above string.

 Uri videoPrevUri = new Uri(videoURL);
 string videoID = HttpUtility.ParseQueryString(videoPrevUri.Query).Get("v");

videoID will return you the value of v

SharePoint document metadata not updating

I faced a weird issue today, Metadata for document which has lookup column was not updating even after saving the item. There was no erro...