Click here to Skip to main content
15,889,216 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: datatable.select("dintinct columnName"); Pin
Kaushal Arora24-Jun-09 3:59
Kaushal Arora24-Jun-09 3:59 
Questionvb .net Code Pin
Ganesh Great23-Jun-09 19:12
Ganesh Great23-Jun-09 19:12 
AnswerRe: vb .net Code Pin
Abhijit Jana23-Jun-09 19:32
professionalAbhijit Jana23-Jun-09 19:32 
QuestionHelp on Grid View Pin
KhandelwalA23-Jun-09 18:44
KhandelwalA23-Jun-09 18:44 
AnswerRe: Help on Grid View Pin
padmanabhan N23-Jun-09 18:53
padmanabhan N23-Jun-09 18:53 
AnswerRe: Help on Grid View Pin
Amol-11123-Jun-09 19:27
Amol-11123-Jun-09 19:27 
Questioncustomized reports with calendars and dropdown list Pin
Flavia A23-Jun-09 18:38
Flavia A23-Jun-09 18:38 
AnswerRe: customized reports with calendars and dropdown list Pin
Amol-11123-Jun-09 20:59
Amol-11123-Jun-09 20:59 
Take a blank .rdlc (report1.rdlc).
create .xsd file (say dsReport.xsd).
Create datatable in dsReport (say dtReport).Include (or create manualy) fields required in the datatable,dtReport. Drag those fields in ur rdlc.

in code behind

using Microsoft.Reporting.WebForms;

 
reportViewer1.Visible = true;
reportViewer1.ShowToolBar = true;
reportViewer1.SizeToReportContent = true;
reportViewer1.LocalReport.ReportPath = "report1.rdlc"; 
reportViewer1.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Local;
//Note:DisplayReport will be your method to get data based on your parameters with return type as datatable.  
DataTable dtReportSource = DisplayReport(fromDate,todate,process);

//Note schema for dtReport and dtReportSource should match.
//Note: name format of dataset and datatable in .xsd file

reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("dsReport_dtReport", dtReportSource ));

QuestionMask field Pin
janani1323-Jun-09 18:22
janani1323-Jun-09 18:22 
AnswerRe: Mask field Pin
Abhijit Jana23-Jun-09 18:41
professionalAbhijit Jana23-Jun-09 18:41 
Questionhow to solve this problem Pin
lakshmichawala23-Jun-09 18:21
lakshmichawala23-Jun-09 18:21 
AnswerRe: how to solve this problem Pin
Abhijit Jana23-Jun-09 18:40
professionalAbhijit Jana23-Jun-09 18:40 
GeneralRe: how to solve this problem Pin
lakshmichawala23-Jun-09 19:38
lakshmichawala23-Jun-09 19:38 
GeneralRe: how to solve this problem Pin
Abhijit Jana23-Jun-09 21:19
professionalAbhijit Jana23-Jun-09 21:19 
QuestionWeb.sitemap could not be loaded Pin
nitin_ion23-Jun-09 17:07
nitin_ion23-Jun-09 17:07 
AnswerRe: Web.sitemap could not be loaded Pin
Abhijit Jana23-Jun-09 18:17
professionalAbhijit Jana23-Jun-09 18:17 
QuestionHow to make a asp:textbox to be able to put images, bulletpoints, like blogger's on Pin
freeman198923-Jun-09 14:10
freeman198923-Jun-09 14:10 
AnswerRe: How to make a asp:textbox to be able to put images, bulletpoints, like blogger's on Pin
Not Active23-Jun-09 15:24
mentorNot Active23-Jun-09 15:24 
AnswerRe: How to make a asp:textbox to be able to put images, bulletpoints, like blogger's on Pin
kstls29-Jun-09 1:41
kstls29-Jun-09 1:41 
QuestionHow to display formatted numbers in textBox ? Pin
hdv21223-Jun-09 12:41
hdv21223-Jun-09 12:41 
AnswerRe: How to display formatted numbers in textBox ? Pin
freeman198923-Jun-09 14:40
freeman198923-Jun-09 14:40 
AnswerRe: How to display formatted numbers in textBox ? Pin
Not Active23-Jun-09 15:26
mentorNot Active23-Jun-09 15:26 
QuestionGridView Checkbox Pin
mark_me23-Jun-09 6:56
mark_me23-Jun-09 6:56 
AnswerRe: GridView Checkbox Pin
Abhijit Jana23-Jun-09 7:36
professionalAbhijit Jana23-Jun-09 7:36 
GeneralRe: GridView Checkbox Pin
mark_me23-Jun-09 8:46
mark_me23-Jun-09 8:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.