Do not show the message "No records found"

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
appu1
User
Posts: 23

Do not show the message "No records found"

Post by appu1 »

hi,

I don't want to show the message "No records found" if there is no records on the list page. how can I disable these messages ?

Thanks


vincenthung
User
Posts: 88

Post by vincenthung »

You can add code to clear the message in "Message_Showing" server event.

Please read the example in help file topic: "Server Events and Client Scirpts" -> "Message_Showing"

if (msg == "No records found") {
msg = "";
}


Post Reply