Search

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

Matching Posts

  • Re: Table width

    Nowrap is not working
    Posted to Getting Started (Forum) by kalkumar on 9/11/2008
  • TD Wrap

    Hi, I have Html table like the below: < table width ="80px" border ="1"> < tr > < td style =" word-wrap : break-word ; " > LongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWord </ td > < td width ="30"> Short word </ td >
    Posted to Web Forms (Forum) by kalkumar on 9/10/2008
  • Show Listview's InsertTemplate when datatable is empty

    Hi, In my page, I am binding listview to the Datatable. Listview has the inserttemplate. Outside the listview, I am putting the one button and in this button click: Listview.InsertItemPosition = InsertItemPosition.LastItem. When I click on the button, the listview is not showing. How to show the listview's inserttemplate contents when datatable is empty? Thanks in advance
    Posted to Data Presentation Controls (Forum) by kalkumar on 8/26/2008
  • Wizardsteps and repeater

    Hi, I have to display the wizard steps horizantally. So I am using one user control to do this. The user control is having Repeater < asp : Repeater ID ="NavBar" runat ="server" OnItemCommand ="NavBar_ItemCommand" OnItemDataBound ="NavBar_ItemDataBound"> < HeaderTemplate > < div id ="navcontainer"> < ul id ="navlist"> </ HeaderTemplate > < ItemTemplate > < li > < asp : LinkButton ID ="LinkButton1"
    Posted to Getting Started (Forum) by kalkumar on 7/21/2008
  • Populate address fields from busienss object

    I have one business object Address: Public Class Address { String streetAddress1; String Address2; String County; String Country; String State; } In my main class Person, I am using the above address object as a field so I can save the address associated with the person. In my presentation, I have the Drop down lists for County, Country, State which populate them with values from database. I do not want to populate those drop down lists directly from database. Instead want to use one Factory method
    Posted to Architecture (Forum) by kalkumar on 7/18/2008
  • Re: Dynamically ganerate control

    Thanks for the suggestion. I just want to know whether my approach is good or not.
    Posted to Architecture (Forum) by kalkumar on 7/13/2008
  • Dynamically ganerate control

    Hi, I have one table in database like the below: ID Name 1 option1: 2 Option2: 3 Option3: Now I am designing the class like the blow: Class option { int id; string name; //Properties } In DAL, I ampopulating the options like the below: Collection<option> result; result.add(new option(//Loading fromdb)); result.add(new option(//...)); Now In my aspx page, I have to generate the checkboxes dynalically. so I am doing like the below: CheckBox c= new CheckBox(); c.Text = result[0].Name; .... IS
    Posted to Architecture (Forum) by kalkumar on 7/12/2008
  • Re: DataList in Gridview

    No. I do not want to display the data in bound fields. I want to display the data from the Ownership object which is having two fields one is Collection<Businessobjects> second field is collection<personObject> . Now In one Grid view row display ownership object's business data and in another row, display the Ownership object's person data. Thatswhy I am about to use two data lists and those data lists in Gridview RowDatabound event. One datalist bound to Business collection another
    Posted to Data Presentation Controls (Forum) by kalkumar on 7/11/2008
  • Re: DataList in Gridview

    To bind in the Page_Load, the problem is I have to bind the two objects to the Gridview one row display the business data, one row should display the person data. Thats why I am binding in the Row_Databound event. But I tried binding in the Page_Load event like the below: gvOwners.DataSource = owners.Businesses; gvOwners.DataBind(); with the Row_Databound having the code specified in the previous post. This time emplty Gridview is displaying in the page with no data. Thanks
    Posted to Data Presentation Controls (Forum) by kalkumar on 7/11/2008
  • DataList in Gridview

    Hi, I have the complex business object like: Ownership. Ownership object is collection of buisness objects, collection of person objects. class Ownership { Collection<BusinessData> Businesses; Collection<PersonData> Persons; } In the ASPX.cs Page_Load I am adding the business objects to Ownership object: OwnerShip owners = new OwnerShip (); owners.Businesses.Add( new BusinessData ( "XX LLC" , true , 0, 20, "pres" , "" , true )); XX LLC is business name. owners
    Posted to Data Presentation Controls (Forum) by kalkumar on 7/10/2008
Page 1 of 22 (218 items) 1 2 3 4 5 Next > ... Last ยป