Now I have a ViewData["status"] at View and will be displayed when user click on the "SAVE" button as shown below:
<tr>
@if (ViewData["status"] == null || ViewData["status"] == "")
{
}
else {
<td colspan="2" style="color:red; font-weight:bold;">
@ViewData["status"]
</td>
}
</tr>
Now that after user click the save button, the string in ViewData["status"] can be shown permanently. Is there any way to let it show for 2 seconds and dissapear?
You'll need javascript for this. jQuery would be ideal.
<td>
element an ID.You could also fade-out the element so that the hide effect is a smooth transition.