Search

You searched for the word(s): userid:871814

Matching Posts

  • Re: I am not getting records from database

    cmdSelect = New SqlCommand("select first_name,phone_num,id_number from table_case left outer join table_contact on table_case.case_reporter2contact=table_contact.objid where id_number= @id_number", conPubs) ods = New DataSet() oda = New SqlDataAdapter(cmdSelect) cmdSelect.CommandType = CommandType.Text cmdSelect.Parameters. AddWithValue ("@id_number", txtCaseID.Text) // Corrected this line please chek it cmdSelect.Connection = conPubs //Now try to fill the record set oda.fill
    Posted to Getting Started (Forum) by babu27 on 10/14/2009
  • Re: web site project

    yes it same in vs 2005 also. for taking backup of ur web site all u need to do is copy the folder where ur aspx.cs and aspx files r there.... all the best....
    Posted to Getting Started (Forum) by babu27 on 9/22/2009
  • Re: String to HtmlTable

    if you r familier with XML then read the string as XML and read the attributes. if u want to write u can add the attribute to which u want ur selection. all the best
    Posted to Web Forms (Forum) by babu27 on 9/21/2009
  • Re: Build Error

    Hi, it is not very clear can u post the part of that code... the mentioned exception can caused in many cases like if you have not created object of report document only reference variable is there or the other parameters what u are passing to the function or the report file path is worng( run time). many more is there... just check these first All the Best.
    Posted to Getting Started (Forum) by babu27 on 7/10/2009
  • Re: Display a Loading Image when button click action is in progress

    You can do it by using javascript code u can disable all the controls in the page using javascript and show only what u want to show and then on load you can enable it.
    Posted to Getting Started (Forum) by babu27 on 6/30/2009
  • Re: Error on : Input string was not in a correct format.

    there is no error with this line you need to verify the session value whether it is null or it contains the value. But no other errors.. If it works then fine else please post the error msg or exception msg.
    Posted to Getting Started (Forum) by babu27 on 6/30/2009
  • Re: Hyperlink in a mail

    Here you need to provide the full information like http://www.address.com then it will let the user to the link. rest of the code seems correct. best of luck....
    Posted to Getting Started (Forum) by babu27 on 6/30/2009
  • Re: how to get id of selected multiple rows

    less information is there to get it properly.. Ok whatever i got according to that. If you want to get the id of first three row in javascript then simply fetch the grid by using javascript code var tbl=document.getElementId("gridName") and then treat tbl variable as html table and read its first column or the id column. if you want it in server side means in cs page then you can read the source i.e dataset and fetch the value.. All the best
    Posted to Data Presentation Controls (Forum) by babu27 on 6/30/2009
  • Re: Self Validating Textbox

    Hi dear, You want to create you own textBox which has the ability to validate itself. Ok for this you can inherit the TextBox class and IValidator simultaneously it will look like this class CustomtextBox : TextBox, IValidator { #region IValidator Members public string ErrorMessage { get { throw new System.Exception("The method or operation is not implemented."); } set { throw new System.Exception("The method or operation is not implemented."); } } public bool IsValid { get {
    Posted to Web Forms (Forum) by babu27 on 6/30/2009
  • Re: Creating newline in C# problem

    Hi ibcent2003, As i know the <br/> is used in the web form. if you are using the window form then use '\n' or System.Environment.NewLine; or ascii code of Enter key i.e 13. All the Best...
    Posted to C# (Forum) by babu27 on 6/30/2009
Page 1 of 4 (38 items) 1 2 3 4 Next >