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

ASP.NET

 
GeneralRe: how to perform delete and update the images in gridview control using asp.net with c# with sqlserver 2005 Pin
Sandeep Mewara14-Mar-10 6:32
mveSandeep Mewara14-Mar-10 6:32 
GeneralRe: how to perform delete and update the images in gridview control using asp.net with c# with sqlserver 2005 Pin
developerit14-Mar-10 19:30
developerit14-Mar-10 19:30 
AnswerRe: how to perform delete and update the images in gridview control using asp.net with c# with sqlserver 2005 Pin
dan!sh 14-Mar-10 3:57
professional dan!sh 14-Mar-10 3:57 
Questionhow to search from database when user enter any table value in textbox control Pin
developerit14-Mar-10 3:46
developerit14-Mar-10 3:46 
AnswerRe: how to search from database when user enter any table value in textbox control Pin
Sandeep Mewara14-Mar-10 3:51
mveSandeep Mewara14-Mar-10 3:51 
GeneralRe: how to search from database when user enter any table value in textbox control Pin
developerit14-Mar-10 19:18
developerit14-Mar-10 19:18 
AnswerRe: how to search from database when user enter any table value in textbox control Pin
Not Active14-Mar-10 5:57
mentorNot Active14-Mar-10 5:57 
QuestionStored Procedure OUTPUT Parameter not working. Pin
sharad Pyakurel13-Mar-10 18:14
sharad Pyakurel13-Mar-10 18:14 
My method adds parameters to stored procedure as:
public void AddParameter(string StrName, SqlDbType objType, ParameterDirection objDirection)
{
SqlParameter l_Param = new SqlParameter();
l_Param.ParameterName = StrName;
l_Param.SqlDbType = objType;
l_Param.Direction = objDirection;
Command.Parameters.Add(l_Param);
}

public void AddParameter(string strName, SqlDbType objType, ParameterDirection objDirection, object objValue)
{
AddParameter(strName, objType, objDirection);
}

I have send parameters to stored procedure using above method and used ExecuteScaler and ExecuteReader both. But it displays error while executing stored procedure.
AnswerRe: Stored Procedure OUTPUT Parameter not working. Pin
dan!sh 13-Mar-10 19:06
professional dan!sh 13-Mar-10 19:06 
GeneralRe: Stored Procedure OUTPUT Parameter not working. Pin
Pranay Rana13-Mar-10 20:22
professionalPranay Rana13-Mar-10 20:22 
AnswerRe: Stored Procedure OUTPUT Parameter not working. Pin
Sandeep Mewara13-Mar-10 20:29
mveSandeep Mewara13-Mar-10 20:29 
AnswerRe: Stored Procedure OUTPUT Parameter not working. Pin
sharad Pyakurel14-Mar-10 20:13
sharad Pyakurel14-Mar-10 20:13 
GeneralRe: Stored Procedure OUTPUT Parameter not working. Pin
Arindam Tewary14-Mar-10 20:57
professionalArindam Tewary14-Mar-10 20:57 
GeneralRe: Stored Procedure OUTPUT Parameter not working. Pin
sharad Pyakurel17-Mar-10 1:03
sharad Pyakurel17-Mar-10 1:03 
QuestionDatalist or Repeater in asp.net Pin
nhss13-Mar-10 17:41
nhss13-Mar-10 17:41 
AnswerRe: Datalist or Repeater in asp.net Pin
Abhijit Jana14-Mar-10 10:13
professionalAbhijit Jana14-Mar-10 10:13 
QuestionHow I display an increment number on the same web pages (.asp) Pin
Curious 200913-Mar-10 11:49
Curious 200913-Mar-10 11:49 
AnswerRe: How I display an increment number on the same web pages (.asp) Pin
Not Active13-Mar-10 12:51
mentorNot Active13-Mar-10 12:51 
GeneralRe: How I display an increment number on the same web pages (.asp) Pin
Curious 200913-Mar-10 13:56
Curious 200913-Mar-10 13:56 
Questionhow to retrieve 100000 record from sqlite (Mobile Applications) ????!!!!!!! Pin
Yajjoj13-Mar-10 4:53
Yajjoj13-Mar-10 4:53 
AnswerRe: how to retrieve 100000 record from sqlite (Mobile Applications) ????!!!!!!! Pin
Not Active13-Mar-10 5:43
mentorNot Active13-Mar-10 5:43 
QuestionGridview Paging and Data Filtering. Pin
VikashGohil13-Mar-10 1:28
VikashGohil13-Mar-10 1:28 
AnswerRe: Gridview Paging and Data Filtering. Pin
Sandeep Mewara13-Mar-10 1:47
mveSandeep Mewara13-Mar-10 1:47 
GeneralRe: Gridview Paging and Data Filtering. Pin
VikashGohil14-Mar-10 19:58
VikashGohil14-Mar-10 19:58 
GeneralRe: Gridview Paging and Data Filtering. Pin
Arindam Tewary14-Mar-10 21:08
professionalArindam Tewary14-Mar-10 21:08 

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.