Click here to Skip to main content
15,896,269 members

Comments by Member 11114915 - Tanvi (Top 14 by date)

Member 11114915 - Tanvi 28-Sep-16 14:50pm View    
thanks Richard...will surely try to implement the same....:)
Member 11114915 - Tanvi 28-Sep-16 14:49pm View    
thanks David...i hv sorted this in different manner..by using elementat()...thank you for the solution....:)
Member 11114915 - Tanvi 28-Sep-16 0:58am View    
Hey.. TempData["Usr"] contains data which is same as of 'Res'
Member 11114915 - Tanvi 1-Sep-16 0:06am View    
I have updated the solution and added the query to get the characters between "=" and ";" irrespective of a length. Kindly try that one.
Member 11114915 - Tanvi 10-Aug-16 12:54pm View    
Instead of using return View("_Details", qry) , kindly use return View(qry); and also add below on Index view.

<fieldset>
tblCustomer

<div class="display-label">
@Html.DisplayNameFor(model => model.FirstName)
</div>
<div class="display-field">
@Html.TextBoxFor(model => model.FirstName)
</div>

<div class="display-label">
@Html.DisplayNameFor(model => model.LastName)
</div>
<div class="display-field">
@Html.TextBoxFor(model => model.LastName)
</div>

<div class="display-label">
@Html.DisplayNameFor(model => model.Address)
</div>
<div class="display-field">
@Html.TextBoxFor(model => model.Address)
</div>
</fieldset>