You must Sign In to post a response.
  • Category: ASP.NET

    Asp.net C# Text box

    Am Using Bostrip Template in that am using asp.net text box.
    Am using 2 text box and One button. when i type the text inside text box then Click Submit.
    Textbox box value take empty.not get typed text what i do
  • #766425
    Hi

    Bootstrap layout we can easily do for Textbox and Button Control .

    try this code working good.



    <form role="form">
    <div class="form-group">
    <label for="email">Email address:</label>
    <input type="email" class="form-control" id="email">
    </div>
    <div class="form-group">
    <label for="pwd">Password:</label>
    <input type="password" class="form-control" id="pwd">
    </div>
    <div class="checkbox">
    <label><input type="checkbox"> Remember me</label>
    </div>
    <button type="submit" class="btn btn-default">Submit</button>
    </form>



    refer below url
    "w3schools.com/"

    then can you share your code what you done.

    Name : Dotnet Developer-2015
    Email Id : kumaraspcode2009@gmail.com

    'Not by might nor by power, but by my Spirit,' says the LORD Almighty.

  • #766435
    post your code, Bootstrap layout contains basic HTML controls we just need to take its .value property from each number
    Thanks
    Koolprasd2003
    Editor, DotNetSpider MVM
    Microsoft MVP 2014 [ASP.NET/IIS]


  • Sign In to post your comments