I am working with WebForms, my form is as follows:
<div class="form-group formulario" id="formulariogral">
<form action="">
<div id="titulos">
<h1 class="title" >titulo</h1>
<h3 class="title" >subtitulo</h3>
</div>
<label>Title</label>
<input type="text" class="form-control" placeholder="title" id="" />
<div class="form-group">
<div class="formulario">
<div class="form-group">
<label>Effective Date</label>
<div class="input-group date" id="datepicker1">
<input type='text' class="form-control" />
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>
</div>
</div>
</div>
<div class=' formulario'>
<div class="form-group">
<label>Expiration Date</label>
<div class='input-group date' id="datepicker2">
<input type='text' class="form-control" />
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>
</div>
</div>
</div>
</div>
<div class="select formulario">
<select class="form-control">
<option>Safety</option>
<option>Material</option>
<option>Quality</option>
<option>Operations</option>
</select>
</div>
<div>
<label>Coments</label>
<textarea rows="5" cols="50" class="form-control"></textarea>
</div>
<!-- end form-->
<div id="submit">
<input class="btn btn-default" type="submit" value="Submit" style="display:block; margin-top:20px; margin-left:10px;">
<hr style="border:1px groove black; width:15%; float:left; display:block"/>
</div>
</form>
</div>
How can I send the data to my database and bring it as a table to a page other than the one I sent it through the CodeBehind or the sending from aspx?