Being comfortable with using html, I find it easier to just use regular html in my views, for example, creating a textbox with <input type="text" maxlength="30" name="firstname">
instead of <%= html.textbox("firstname") %>. Or <form method="post" name="myform">
instead of <% html.beginform() { %>
.
Is this considered bad practise ? Should I start to force myself using the helpers etc ? Am I going to run into trouble if I keep using regular html ?
Just something I was wondering, as most of the examples and stuff I see online use all the beforementioned helpers and methods...