Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. aspnetvbcsharpnerd

    Gridview dynamically adding new columns

    I am binding gridview dynamically mDataAdapter = new DataAdapter(); // Initiate the database connection mDataAdapter.Init(Constant.CONNECTIONSTRING); // Get the suppliers mDataSet = mDataAdapter.GetSearchItem(ItemId, ItemName); // Load the gridview with search items grdItemSearch.DataSource =...
  2. aspnetvbcsharpnerd

    Align Center CSS

    Ok, I'll have the same issue using client-side code If I add to the paragraph then everything becomes center and it work. <p class="alignment-center"><strong>ItemId</strong><input class="alignment-center" /></p> But I want the text to be at the left and the input to be at the center. Is this...
  3. aspnetvbcsharpnerd

    Align Center CSS

    It doesn't the textbox isn't isn't at the center it just next to text. This is what I have so far. <h1>Item</h1> <p><strong>ItemId</strong><asp:TextBox ID="txtItemId" runat="server" CssClass="alignment-center"></asp:TextBox></p> <p><strong>Name</strong><asp:TextBox ID="txtItem"...
  4. aspnetvbcsharpnerd

    Align Center CSS

    I know how to align text center text-align: center; How do I align an input to to be center?
  5. aspnetvbcsharpnerd

    Convert int to int[]

    Ok, thanks for the help.
  6. aspnetvbcsharpnerd

    Convert int to int[]

    How can I convert int to int[]?

Part and Inventory Search

Back
Top