Click here to Skip to main content
15,905,679 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Geeks,

In my ASP.NET application, i have an requirement to show the records like in QUEUE order.

Actually now i'm working in an Retail Management Project. Here once the Billing is made in Billing Section. I need to show that particular Billno, BillAmount, CustomerName in an queue of "Payment pending list" in Payment Section. After payment is made for that particular bill no, i need to hide it from that Queue.


Like Facebook's right top corner(Updates from my friends)...

How to make it ?

Any help would be appreciated....
Posted
Updated 22-Dec-11 5:52am
v2

U can achieve this by using asp.net ajax, timer control with update panel and some other controls to populate your data, you will let the timer control be calling a server method that does polling, that is query a server side table where your billing record is located
 
Share this answer
 
Comments
J.Karthick 23-Dec-11 0:40am    
I found a link it will be useful for future developers...

http://ajax.net-tutorials.com/controls/timer-control/

Thanks again adewole ayobami :)
Try:
SQL
SELECT * FROM myTable WHERE amountOwed!=0.0
 
Share this answer
 
Comments
J.Karthick 22-Dec-11 11:19am    
But....where should i load those records ??
i mean "which control" ?

I need to show records like...Facebook's right Top Corner(dynamically load comments from friends of mine)

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