No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Hi, Please go through this code it can help you. ==================================================== protected void lnkExport_Click(object sender, EventArgs e) { if (gv.Rows.Count > 0) { Response.Buffer = true; string attachment = "attachment; filename=Excel.xls"; Response.ClearContent(); Response.AddHeader("content-disposition", attachment); Response.ContentType = "application/ms-excel"; StringWriter sw = new StringWriter(); HtmlTextWriter htw = new HtmlTextWriter(sw); gv.RenderControl(htw); Response.Write(sw.ToString()); Response.End(); …
Hi, Its a nice topic and dreamztechUSA LLC want to join in this as we are well experienced in it and so far we have developed almost 50 such projects. Try the Mod.Mono instead of mod_aspdotnet: http://mono-project.com/Mod_mono This handles ASP.NET 4.0 (With the exception of EntityFramework). See the compatibility for …
Hi, Its a nice topic and dreamztechUSA LLC want to join in it. You can try it. To open an image ============================================== AtalaImage botImage = new AtalaImage("bottomImage.png"); AtalaImage topImage = new AtalaImage("topImage.png"); To overlay one on top of another =================================================== Point pos = new Point(0,0); // or whatever you need …
The End.