ASP.NET workflow project
-
Hi, I have an asp.net application, in which a document need to be sent from one level to another level.Which means a request will be created by the user and it should be sent to next higher level for approval and once he approves it, it should be there in the login of next higher authority. Any idea please.
-
Hi, I have an asp.net application, in which a document need to be sent from one level to another level.Which means a request will be created by the user and it should be sent to next higher level for approval and once he approves it, it should be there in the login of next higher authority. Any idea please.
you can use Windows Workflow Foundation [ .NET 3.0 ] or can implement the simple logic by using Database. Thanks
Best Regards ----------------- Abhijit Jana Check Out My Latest Article Java.NET : Integration of Java and .NET[^] "Success is Journey it's not a destination"
-
you can use Windows Workflow Foundation [ .NET 3.0 ] or can implement the simple logic by using Database. Thanks
Best Regards ----------------- Abhijit Jana Check Out My Latest Article Java.NET : Integration of Java and .NET[^] "Success is Journey it's not a destination"
Can you help me how can we do using database?
-
Can you help me how can we do using database?
SUDHAKAR PALLAM wrote:
Can you help me how can we do using database?
When user creates a requests, keep it in database, send a mail with approval link to the person who has to approve it. When he clicks on the link, change a status in the database to indicate the person has approved.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia How to use google | Ask smart questions
-
Can you help me how can we do using database?
whatever Navaneeth suggested i am completely aggree with him. just prepare database with proper hiearchi and set status accoding to them. Thanks !!
Best Regards ----------------- Abhijit Jana Check Out My Latest Article Java.NET : Integration of Java and .NET[^] "Success is Journey it's not a destination"
-
whatever Navaneeth suggested i am completely aggree with him. just prepare database with proper hiearchi and set status accoding to them. Thanks !!
Best Regards ----------------- Abhijit Jana Check Out My Latest Article Java.NET : Integration of Java and .NET[^] "Success is Journey it's not a destination"
Thank you vey much for ur suggestion. Here, you talked something about Windows Workflow foundation. Can you guide me in that way? I am probably thinking of doing this using WWF. Where can i get the necessary resources. If there are any real good books with atleast a complete workflow, thta would help me a lot. Thanks a lot.
-
Thank you vey much for ur suggestion. Here, you talked something about Windows Workflow foundation. Can you guide me in that way? I am probably thinking of doing this using WWF. Where can i get the necessary resources. If there are any real good books with atleast a complete workflow, thta would help me a lot. Thanks a lot.
if you want to use WWF you need at least
.NET 3.0 Framework
. if you are using VS 2005 , then install Framework 3.0 andWWF Extention
for use Workflow it is freely available on MSDN Sites. if you are using VS2008 then you can start work either in .NET 3.0 or .NET 3.5. This is the link from where you can start Basic of WWF from Codeproject[^] if you have any Query Regarding WWF please post question Code Project WCF/WPF/WF Forum[^] are you can get answer from some more Experts . Hope this will helps you !!Best Regards ----------------- Abhijit Jana Check Out My Latest Article Java.NET : Integration of Java and .NET[^] "Success is Journey it's not a destination"