Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~456 People Reached
Favorite Forums
Favorite Tags
Member Avatar for sanjanaa
Member Avatar for sanjanaa
0
117
Member Avatar for sanjanaa

Hi, I have a dataset which is having 5 tables. I want to get only two tables from that dataset and assign into a single datagrid. How can i do this? Thanks in advance...

Member Avatar for reach_yousuf
0
136
Member Avatar for sanjanaa

Hi, ASP.Net does not shows Save As dialogue box while converting Datgrid into Excel/Pdf. My code has no errors. It Doesn't do anything. I am using this code: Response.ClearContent(); Response.AddHeader("content-disposition", "attachment; filename=Sample.xls"); Response.ContentType = "application/vnd.ms-excel"; System.IO.StringWriter sw = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter htw = new HtmlTextWriter(sw); dg.DataSource = dmpset; dg.DataBind(); dg.RenderControl(htw); …

Member Avatar for sanjanaa
0
203