Click here to Skip to main content
15,908,015 members

Comments by sankar071237 (Top 3 by date)

sankar071237 4-Jun-12 2:28am View    
ya.

you know the answer????
sankar071237 4-Jun-12 2:20am View    
your just comparing.

i have given
HELLO is the first string and
OPEN is the second string then

HLL is my out put.

it means both string contains "E","O" same characters then delete those characters in first string and display.
sankar071237 2-Mar-12 2:30am View    
how to give validation for the following code.


<fieldset>
Patient

<div class="editor-label">
@Html.LabelFor(model => model.FirstName)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.FirstName)
@Html.ValidationMessageFor(model => model.FirstName)
</div>

<div class="editor-label">
@Html.LabelFor(model => model.MiddleName)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.MiddleName)
@Html.ValidationMessageFor(model => model.MiddleName)
</div>

<div class="editor-label">
@Html.LabelFor(model => model.LastName)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.LastName)
@Html.ValidationMessageFor(model => model.LastName)
</div>
</fieldset>