Click here to Skip to main content
15,921,452 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: gridview on page index change change page Url with paging no Pin
eyeseetee11-Nov-08 23:49
eyeseetee11-Nov-08 23:49 
QuestionHow to call an object (*.dll) from JavaScript? Pin
darthm11-Nov-08 23:11
darthm11-Nov-08 23:11 
QuestionProblem with file download link Pin
pradeep kumarappagari11-Nov-08 20:35
pradeep kumarappagari11-Nov-08 20:35 
AnswerRe: Problem with file download link Pin
Rinki Mukheraji11-Nov-08 20:49
Rinki Mukheraji11-Nov-08 20:49 
QuestionScreen Resolution problem Pin
SUDHAKAR PALLAM11-Nov-08 20:21
SUDHAKAR PALLAM11-Nov-08 20:21 
AnswerRe: Screen Resolution problem Pin
pradeep kumarappagari11-Nov-08 20:44
pradeep kumarappagari11-Nov-08 20:44 
QuestionLanguage switch in a Master Page Pin
Blumen11-Nov-08 20:05
Blumen11-Nov-08 20:05 
QuestionPlease help in Crystal Report Parameter passing... Pin
mr_muskurahat11-Nov-08 19:54
mr_muskurahat11-Nov-08 19:54 
when i run in webpage two parameters of in text boxes are displayed instead of result can any one please guide me where is problem in my code?? or is there any other way to do it????

ReportDocument reportDocument = new ReportDocument();
ParameterField paramField = new ParameterField();
ParameterFields paramFields = new ParameterFields();
ParameterDiscreteValue paramDiscreteValue = new ParameterDiscreteValue();

reportDocument.Load(Server.MapPath("../Reports/rptAC05.rpt"));
reportDocument.SetDatabaseLogon("sa", "softconsult");
---------------------------------------
paramField.Name = "@dBegDate";
paramDiscreteValue.Value = Request.QueryString["datefrom"];
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);
-------------------------------------------
paramField = new ParameterField();
paramDiscreteValue = new ParameterDiscreteValue();
paramField.Name = "@sBranchCode";
paramDiscreteValue.Value = pBranchCode;
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

this.CrystalReportViewer1.ParameterFieldInfo = paramFields;
this.CrystalReportViewer1.ReportSource = reportDocument;

umerumerumer

Questionrunnning the command prompt from asp.net app Pin
rameshdontagani11-Nov-08 19:38
rameshdontagani11-Nov-08 19:38 
AnswerRe: runnning the command prompt from asp.net app Pin
N a v a n e e t h11-Nov-08 19:44
N a v a n e e t h11-Nov-08 19:44 
GeneralRe: runnning the command prompt from asp.net app Pin
rameshdontagani11-Nov-08 19:51
rameshdontagani11-Nov-08 19:51 
QuestionHosting .NET applications in MAC O/S Pin
K.P.Kannan11-Nov-08 19:18
K.P.Kannan11-Nov-08 19:18 
QuestionMigration issue... Pin
sandhya1411-Nov-08 18:24
sandhya1411-Nov-08 18:24 
QuestionEnter Problem in Autocomplete Textbox Pin
Jagz W11-Nov-08 18:08
professionalJagz W11-Nov-08 18:08 
QuestionAjax problem Pin
krishnaveer11-Nov-08 17:43
krishnaveer11-Nov-08 17:43 
AnswerRe: Ajax problem Pin
Paul Conrad11-Nov-08 18:04
professionalPaul Conrad11-Nov-08 18:04 
GeneralRe: Ajax problem Pin
krishnaveer11-Nov-08 19:28
krishnaveer11-Nov-08 19:28 
GeneralRe: Ajax problem Pin
K.P.Kannan11-Nov-08 19:56
K.P.Kannan11-Nov-08 19:56 
AnswerRe: Ajax problem Pin
SachinKumar M11-Nov-08 23:54
SachinKumar M11-Nov-08 23:54 
QuestionDeploying Web Application Pin
graced8811-Nov-08 17:19
graced8811-Nov-08 17:19 
AnswerRe: Deploying Web Application [modified] Pin
Brij11-Nov-08 17:25
mentorBrij11-Nov-08 17:25 
AnswerRe: Deploying Web Application Pin
N a v a n e e t h11-Nov-08 17:38
N a v a n e e t h11-Nov-08 17:38 
GeneralRe: Deploying Web Application Pin
graced8811-Nov-08 20:02
graced8811-Nov-08 20:02 
Questionsending data from html table to code behind Pin
johland11-Nov-08 11:25
johland11-Nov-08 11:25 
AnswerRe: sending data from html table to code behind Pin
Brij11-Nov-08 17:15
mentorBrij11-Nov-08 17:15 

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.