Contents tagged with .NET
-
CRM 4 Preview view render custom content
We needed to display related entities in the preview view of a custom entity grid, there is no supported way of doing this, so we created a httpmodule, trapped the calls to \_grid\preview.aspx and altered the rendered html.
Here is a snippet of code. You can download the skeleton solution from here. -
Working with Dynamic Controls
Control c = this.wrapper.FindControl("dynamictextbox");
-
Storing ViewState in SQL
<browsers>
-
MPEG Header Reader
A while back I needed to read a mpeg file and retrieve the video/audio information. I didn't want to read the mpeg specification to write one from scratch so after googling around I found a project on sourceforge called mpgtx, it's written in C and has a lot of features. I didn't convert everything in mpgtx to C#, just the bits that read the mpeg header.
Here it is for anyone else that wants to read an mpeg file using C#.