I deployed a DRM solution that issue the license for each user. Generaly, i user these line of code and it works well: ResponseObj.AddLicense("2.0.0.0", LeafLicense); ResponseObj.AddLicense("2.0.0.0", RootLicense); string strLicResponse = ResponseObj.GetLicenseResponse(); Response.Write(strLicResponse); In Windows Vista, Response.Write(strLicResponse) dosn't save the license to the but BUT display the license. Any Idea?
On Jun 3, 1:43 pm, zigg wrote: > I deployed a DRM solution that issue the license for each user. > Generaly, i user these line of code and it works well: > > ResponseObj.AddLicense("2.0.0.0", LeafLicense); > > ResponseObj.AddLicense("2.0.0.0", RootLicense); > > string strLicResponse = ResponseObj.GetLicenseResponse(); > > Response.Write(strLicResponse); > > In Windows Vista, Response.Write(strLicResponse) dosn't save the license to > the but BUT display the license. > Any Idea? Try adding this line: Response.MimeType = "application/vnd.ms-wmdrm.lic-resp";