sp4ceman
Well-Known Member
- Joined
- Jul 11, 2011
- Messages
- 418
- Reaction score
- 0
or even better post the results in another thread...

South Africa’s biggest forum. Discuss, discover, and connect with thousands of members.
Entity framework is great, and even with high volumes it does just perfect.
Do a couple of benchmarks first (with high volume transaction) using EF6 and .NET 4.5, then come back here and post your results..
or even better post the results in another thread...
![]()
had to delete and recreate the db now its fine...
apparently there was a bit of a glitch with the deployments and bitbucket.
all i had to do was remove and re-add the connection and it redeployed fine.
looking at maybe moving to a paid plan on azure, the offer you a staging environment for every deploy...
i was looking at biz spark but you need to be registered and stuff first.. it's a good idea though
input-medium, etc
edit: that is for bootstrap 2,
bootstrap3 - http://getbootstrap.com/css/#forms-control-sizes
yeah it looks ****ed up on phone. busy working on that at the moment but im seriously considering making a separate mobile only version
yeah it looks ****ed up on phone. busy working on that at the moment but im seriously considering making a separate mobile only version
<div class="panel" ng-controller="UserController">
<div class="panel-body">
<fieldset>
<legend>Login Information</legend>
<div class='row'>
<div class='col-sm-12'>
<div class='form-group'>
<label for="user_login">Username</label>
<input class="form-control" id="user_login" name="user[login]" required="true" size="30" type="text" />
</div>
</div>
</div>
<div class='row'>
<div class='col-sm-6'>
<div class='form-group'>
<label for="user_password">Password</label>
<input class="form-control" id="user_password" name="user[password]" size="30" type="password" />
</div>
</div>
<div class='col-sm-6'>
<div class='form-group'>
<label for="user_password_confirmation">Password confirmation</label>
<input class="form-control" id="user_password_confirmation" name="user[password_confirmation]" size="30" type="password" />
</div>
</div>
</div>
</fieldset>
<fieldset>
<legend>Personal Information</legend>
<div class='row'>
<div class='col-sm-2'>
<div class='form-group'>
<label for="user_title">Title</label>
<input class="form-control" id="user_title" name="user[title]" size="30" type="text" />
</div>
</div>
<div class='col-sm-5'>
<div class='form-group'>
<label for="user_firstname">First name</label>
<input class="form-control" id="user_firstname" name="user[firstname]" required="true" size="30" type="text" />
</div>
</div>
<div class='col-sm-5'>
<div class='form-group'>
<label for="user_lastname">Last name</label>
<input class="form-control" id="user_lastname" name="user[lastname]" required="true" size="30" type="text" />
</div>
</div>
</div>
<div class='row'>
<div class='col-sm-12'>
<div class='form-group'>
<label for="user_email">Email</label>
<input class="form-control required email" id="user_email" name="user[email]" required="true" size="30" type="text" />
</div>
</div>
</div>
</fieldset>
</div>
<div class="panel-footer">
<button class="btn btn-success tooltips pull-right" type="button" data-original-title="Update Profile" ng-click="updateProfile()">Update Profile</button>
</div>
</div>