Click here to Skip to main content
16,005,037 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Adding Different Classes type in a single project Pin
Abhijit Jana5-Feb-10 23:10
professionalAbhijit Jana5-Feb-10 23:10 
GeneralRe: Adding Different Classes type in a single project Pin
sashidhar5-Feb-10 23:11
sashidhar5-Feb-10 23:11 
GeneralRe: Adding Different Classes type in a single project Pin
Abhijit Jana5-Feb-10 23:13
professionalAbhijit Jana5-Feb-10 23:13 
AnswerRe: Adding Different Classes type in a single project Pin
Abhijit Jana5-Feb-10 22:57
professionalAbhijit Jana5-Feb-10 22:57 
QuestionClose all opened windows Pin
MathewPV5-Feb-10 19:27
MathewPV5-Feb-10 19:27 
AnswerRe: Close all opened windows Pin
sashidhar5-Feb-10 20:34
sashidhar5-Feb-10 20:34 
QuestionSend sp parameters regardless of sequence Pin
mmdullah5-Feb-10 17:16
mmdullah5-Feb-10 17:16 
AnswerRe: Send sp parameters regardless of sequence Pin
sashidhar5-Feb-10 17:45
sashidhar5-Feb-10 17:45 
Just add the parameters below
As it is a store procedure all you have to do is to send the params to the SP..!
public static bool Update_Driver(int ID, int MeetingID, string Title)
        {

            bool result = false;
            SqlCommand command = new SqlCommand("Your Store ProcedureName", YourConnection);
            command.CommandType = System.Data.CommandType.StoredProcedure;
            command.Parameters.AddWithValue("@ID", ID);
            command.Parameters.AddWithValue("@MeetingID", MeetingID);
            command.Parameters.AddWithValue("@Title", Title);
            command.Connection.Open();
            // result = Convert.ToBoolean(Command.ExecuteNonQuery());
            try
            {
                result = Convert.ToBoolean(command.ExecuteNonQuery());
            }
            catch (Exception ie)
            {
               
            }
            command.Connection.Close();
            command.Connection.Dispose();

            return result;
        }

LatestArticle :Log4Net

Why Do Some People Forget To Mark as Answer .If It Helps.

QuestionHow to Force publish a file in ASP.NET Web Application project ? Pin
Nadia Monalisa5-Feb-10 16:37
Nadia Monalisa5-Feb-10 16:37 
AnswerRe: How to Force publish a file in ASP.NET Web Application project ? Pin
sashidhar5-Feb-10 17:40
sashidhar5-Feb-10 17:40 
QuestionAdding , deleting and updating multi Records in a master-detail gridview which Create at runtime Pin
students552 university5-Feb-10 14:34
students552 university5-Feb-10 14:34 
QuestionWhat is the name of Pin
JustWorking5-Feb-10 3:57
JustWorking5-Feb-10 3:57 
AnswerRe: What is the name of Pin
R. Giskard Reventlov5-Feb-10 4:33
R. Giskard Reventlov5-Feb-10 4:33 
GeneralRe: What is the name of Pin
fat_boy5-Feb-10 23:40
fat_boy5-Feb-10 23:40 
GeneralRe: What is the name of Pin
JustWorking7-Feb-10 20:55
JustWorking7-Feb-10 20:55 
QuestionHow to Store Session Variable(UserName) in a table with MySQL.... Pin
spalanivel5-Feb-10 0:49
spalanivel5-Feb-10 0:49 
AnswerRe: How to Store Session Variable(UserName) in a table with MySQL.... Pin
Not Active5-Feb-10 2:28
mentorNot Active5-Feb-10 2:28 
AnswerRe: How to Store Session Variable(UserName) in a table with MySQL.... Pin
Vimalsoft(Pty) Ltd5-Feb-10 3:34
professionalVimalsoft(Pty) Ltd5-Feb-10 3:34 
AnswerRe: How to Store Session Variable(UserName) in a table with MySQL.... Pin
R. Giskard Reventlov5-Feb-10 3:46
R. Giskard Reventlov5-Feb-10 3:46 
QuestionError with script manager Pin
nainakarri4-Feb-10 23:56
nainakarri4-Feb-10 23:56 
AnswerRe: Error with script manager Pin
Anurag Gandhi5-Feb-10 2:04
professionalAnurag Gandhi5-Feb-10 2:04 
AnswerRe: Error with script manager Pin
Vimalsoft(Pty) Ltd5-Feb-10 3:39
professionalVimalsoft(Pty) Ltd5-Feb-10 3:39 
GeneralRe: Error with script manager Pin
nainakarri7-Feb-10 19:55
nainakarri7-Feb-10 19:55 
GeneralRe: Error with script manager Pin
Vimalsoft(Pty) Ltd7-Feb-10 20:01
professionalVimalsoft(Pty) Ltd7-Feb-10 20:01 
QuestionFormat DataTextField in dropdown in asp.net Pin
nainakarri4-Feb-10 22:05
nainakarri4-Feb-10 22:05 

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.