Click here to Skip to main content
16,006,440 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Session problem! Pin
Chetan Ranpariya5-Jun-07 0:20
Chetan Ranpariya5-Jun-07 0:20 
GeneralRe: Session problem! Pin
gauthee5-Jun-07 2:00
gauthee5-Jun-07 2:00 
GeneralRe: Session problem! Pin
Sathesh Sakthivel4-Jun-07 23:49
Sathesh Sakthivel4-Jun-07 23:49 
GeneralRe: Session problem! Pin
gauthee5-Jun-07 0:11
gauthee5-Jun-07 0:11 
QuestionHow to get two output parameter using enterprise Library 2.0 Pin
Rickey_Me4-Jun-07 22:39
Rickey_Me4-Jun-07 22:39 
AnswerRe: How to get two output parameter using enterprise Library 2.0 Pin
Chetan Ranpariya4-Jun-07 22:45
Chetan Ranpariya4-Jun-07 22:45 
GeneralRe: How to get two output parameter using enterprise Library 2.0 Pin
Rickey_Me4-Jun-07 23:01
Rickey_Me4-Jun-07 23:01 
AnswerRe: How to get two output parameter using enterprise Library 2.0 Pin
Chetan Ranpariya4-Jun-07 23:09
Chetan Ranpariya4-Jun-07 23:09 
Hi,

The logic written in your stored procedure may have any issue.

You try to run the procedure in sql query analyzer with dummy data and see if it gets executed successfully.

And to get value of output parameters u need to set the direction of the parameters which u add to the sqlcommand.

param.Direction = ParameterDirection.Output;

This way you can set directions for parameters and get their values after execution.

int x = (int) cmd.Parameters[parametername].Value;

Value property of sqlparameter is of type object so u need to cast it explicitly to the target type.

I hope this will help u.

Thanks and Regards,
Chetan Ranpariya

GeneralRe: How to get two output parameter using enterprise Library 2.0 Pin
Rickey_Me4-Jun-07 23:31
Rickey_Me4-Jun-07 23:31 
GeneralRe: How to get two output parameter using enterprise Library 2.0 Pin
Chetan Ranpariya4-Jun-07 23:40
Chetan Ranpariya4-Jun-07 23:40 
AnswerRe: How to get two output parameter using enterprise Library 2.0 Pin
SimulationofSai4-Jun-07 23:07
SimulationofSai4-Jun-07 23:07 
GeneralRe: How to get two output parameter using enterprise Library 2.0 Pin
Rickey_Me4-Jun-07 23:13
Rickey_Me4-Jun-07 23:13 
QuestionHow To get updated values from DataView in asp.net Pin
suryahg4-Jun-07 21:57
suryahg4-Jun-07 21:57 
AnswerRe: How To get updated values from DataView in asp.net Pin
Chetan Ranpariya4-Jun-07 22:38
Chetan Ranpariya4-Jun-07 22:38 
GeneralRe: How To get updated values from DataView in asp.net Pin
suryahg5-Jun-07 18:38
suryahg5-Jun-07 18:38 
GeneralRe: How To get updated values from DataView in asp.net Pin
Chetan Ranpariya5-Jun-07 19:28
Chetan Ranpariya5-Jun-07 19:28 
GeneralRe: How To get updated values from DataView in asp.net Pin
suryahg5-Jun-07 22:02
suryahg5-Jun-07 22:02 
QuestionExample for Passing parameters Pin
aaraaayen4-Jun-07 21:23
aaraaayen4-Jun-07 21:23 
AnswerRe: Example for Passing parameters Pin
Chetan Ranpariya4-Jun-07 21:33
Chetan Ranpariya4-Jun-07 21:33 
QuestionHow to validate dynamic controls Pin
praveenkumar_mca4-Jun-07 21:21
praveenkumar_mca4-Jun-07 21:21 
AnswerRe: How to validate dynamic controls Pin
Mariusz Wojcik4-Jun-07 23:45
Mariusz Wojcik4-Jun-07 23:45 
Questionwant Directories as thumbnails...... Pin
asifbhura4-Jun-07 21:11
asifbhura4-Jun-07 21:11 
AnswerRe: want Directories as thumbnails...... Pin
Chetan Ranpariya4-Jun-07 21:25
Chetan Ranpariya4-Jun-07 21:25 
GeneralRe: want Directories as thumbnails...... Pin
asifbhura4-Jun-07 21:35
asifbhura4-Jun-07 21:35 
GeneralRe: want Directories as thumbnails...... [modified] Pin
Chetan Ranpariya4-Jun-07 21:51
Chetan Ranpariya4-Jun-07 21:51 

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.