Click here to Skip to main content
15,900,907 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Session problem! Pin
gauthee5-Jun-07 0:09
gauthee5-Jun-07 0:09 
GeneralRe: Session problem! Pin
Chetan Ranpariya4-Jun-07 23:41
Chetan Ranpariya4-Jun-07 23:41 
GeneralRe: Session problem! Pin
gauthee5-Jun-07 0:10
gauthee5-Jun-07 0:10 
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 
I am using below mention code but system hang when ExecuteNonQuery fires.
don't know why and no error comes.

try
{
OpenConnection();
BeginTransaction();
DbCommand lobjCommand;
String lstrSqlCommand = "Pkg_Denoination.Proc_INSERT_PACK_INDENT";
lobjCommand = _db.GetSqlStringCommand(lstrSqlCommand);
lobjCommand.CommandText = lstrSqlCommand;
lobjCommand.CommandType = CommandType.StoredProcedure;
_db.AddInParameter(lobjCommand, "IN_SERVICE_ORDER_NO", DbType.String, ServiceOrderNo);
_db.AddInParameter(lobjCommand, "IN_ACTPACK_TYPE", DbType.String, ActPackType);
_db.AddInParameter(lobjCommand, "IN_REQUEST_MODE", DbType.String, RequestMode);
_db.AddInParameter(lobjCommand, "IN_APPROVED_BY", DbType.String, ApprovedBY);
_db.AddInParameter(lobjCommand, "IN_USER_UID", DbType.String, UserID);
_db.AddOutParameter(lobjCommand, "OP_ERROR_CODE", DbType.String, 50);
_db.ExecuteNonQuery(lobjCommand);

String lstrErrorCode = Convert.ToString(_db.GetParameterValue(lobjCommand, "OP_ERROR_CODE"));
CommitTransaction();
return lstrErrorCode;
}
catch(Exception ex)
{
throw ex;
}

Rickey

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 
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 

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.