How can i display this kind of message with chr in Asp.net
Please help
If IsNull(Me!ACCOUNT) Then
Response = MsgBox("You have enetered Less money by: " & Value & Chr(10) & Chr(10) & " if this is a credit sale enter the account No of the Customer, Is it a credit Sale ?", vbYesNo, "SPOS")
If Response <> vbYes Then
Forms!client!Cash.SetFocus
Exit Sub
Else
Forms!client!ACCOUNT.SetFocus
Exit Sub
End If
End If
MsgBox "Paid:" & Me!cashpaid & Chr(13) & Chr(13) + "Change :" & Me!change, vbOKOnly, "SPOS"