Click here to Skip to main content
15,894,540 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am making a event management system....
I want only 3 events can be booked per day not more than 3
I do not know how to do this
any help will be appreciated
Posted
Updated 23-Nov-12 3:03am
v2
Comments
[no name] 23-Nov-12 9:06am    
string str="";

foreach(DataRow dr in dataTable.Rows)
{
if(dr.count>3)
{
str = "Enough Records are there for today..";
}
}

return str;

1 solution

Before you insert a new record, run a query against your table where you store the events and count how many already exist. If there are already 3, then simply don't allow a user to continue adding new records.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900