Results for "Author: quartz"
Universal Database Admin for ASP.NET and SQL Server----------------------------------------- A dynamic web application needs an admin section for CRUD action of the database, wouldn't it be nice if we can have a universal database administration, which can be plugged to any web application, Just give your sql connection string and it generates pages for Create, Read, Update and Delete ----------------------------------------- Description This following code describes an asp.net web module which can be added /cutomized in any sql driven web application as a database administration. When i first started with an admin section of a web application, i thought why not try to make something more general a plug-n-play admin section which can be used for any SQL driven dynamic web application so here is the result of the effort. ----------------------------------------- The Target was. 1. Create a self sufficient Admin section which can be put into any SQL driven web application by changing the connectionstring for SQL server in web.config ----------------------------------------- 2. User needs to Login before doing the CRUD (create/Read/Update/Delete) operations ----------------------------------------- 3. There should be individual pages one for each operations(CRUD) which will take tablename as parameters ----------------------------------------- 4. A dataAccess class which wraps all the data access methods and returns values or records as required. Assumptions ----------------------------------------- These were the initial thoughts but to make it a general module i made some assumptions 1. Every Table has One Primary Key and It is the First Field in the Table There is atleast one AdminUser table in the SQL database which has a Permission field with value "Admin" for the users to login to the admin section for CRUD operations ----------------------------------------- The Web.config looks like this A Connectionstring and AdminTable name in the web.config <appSettings><add key="ConnectionString" value="Data Source=YourdatasrcIP;POOLING=FALSE; database=YourDatabasename;User ID=YouruserID;Password=YourPassword" /> <add key="AdminTable" value="YourAdminTableName" /> </appSettings> ----------------------------------------- MORE UPDATES AND DISCUSSION AT http://www.codeproject.com/script/articles/list_articles.asp?userid=81898 -----------------------------------------
Globalization of Windows Application in 20 Minutes using C#
AJAX RATING SYSTEM ----------------------------------------------- ASP.NET web module along with some chunks of Javascripts and ...Ajax to create a Rating System. ----------------------------------------------- This can be added /customized for any table to add a rating/score module. I was quite amazed, when i first saw the capability of rating multiple items at amazon website without refreshing the page. ----------------------------------------------- The target was to create a cross browser rating/score system like amazon or better: ----------------------------------------------- Rating: User should be able to Rate a record (1-5) ----------------------------------------------- Accuracy: Number of votes and total score should be accurate and saved and should not be lost in calculations ----------------------------------------------- Real time: Rate/score should be displayed after rating instantly ----------------------------------------------- Reusable: It should be easily plugged into any table for reusability ----------------------------------------------- Avoiding multiple ratings: Basic mechanism to avoid multiple ratings by the same user ----------------------------------------------- Best approach: Compare the pros and cons for both Amazon and Ajax approach ----------------------------------------------- Security: Few words ----------------------------------------------- More discussion can be found on http://www.codeproject.com/useritems/RatingDemystifiedAjaxWay.asp ----------------------------------------------- ONINE DEMO http://interviewinfo.net/rating/photo.aspx -----------------------------------------------
Universal Database Admin for ASP.NET and SQL Server----------------------------------------- A dynamic web application needs an admin section for CRUD action of the database, wouldn't it be nice if we can have a universal database administration, which can be plugged to any web application, Just give your sql connection string and it generates pages for Create, Read, Update and Delete ----------------------------------------- Description This following code describes an asp.net web module which can be added /cutomized in any sql driven web application as a database administration. When i first started with an admin section of a web application, i thought why not try to make something more general a plug-n-play admin section which can be used for any SQL driven dynamic web application so here is the result of the effort. ----------------------------------------- The Target was. 1. Create a self sufficient Admin section which can be put into any SQL driven web application by changing the connectionstring for SQL server in web.config ----------------------------------------- 2. User needs to Login before doing the CRUD (create/Read/Update/Delete) operations ----------------------------------------- 3. There should be individual pages one for each operations(CRUD) which will take tablename as parameters ----------------------------------------- 4. A dataAccess class which wraps all the data access methods and returns values or records as required. Assumptions ----------------------------------------- These were the initial thoughts but to make it a general module i made some assumptions 1. Every Table has One Primary Key and It is the First Field in the Table There is atleast one AdminUser table in the SQL database which has a Permission field with value "Admin" for the users to login to the admin section for CRUD operations ----------------------------------------- The Web.config looks like this A Connectionstring and AdminTable name in the web.config <appSettings><add key="ConnectionString" value="Data Source=YourdatasrcIP;POOLING=FALSE; database=YourDatabasename;User ID=YouruserID;Password=YourPassword" /> <add key="AdminTable" value="YourAdminTableName" /> </appSettings> ----------------------------------------- MORE UPDATES AND DISCUSSION AT http://www.codeproject.com/script/articles/list_articles.asp?userid=81898 -----------------------------------------
Globalization of Windows Application in 20 Minutes using C#
AJAX RATING SYSTEM ----------------------------------------------- ASP.NET web module along with some chunks of Javascripts and ...Ajax to create a Rating System. ----------------------------------------------- This can be added /customized for any table to add a rating/score module. I was quite amazed, when i first saw the capability of rating multiple items at amazon website without refreshing the page. ----------------------------------------------- The target was to create a cross browser rating/score system like amazon or better: ----------------------------------------------- Rating: User should be able to Rate a record (1-5) ----------------------------------------------- Accuracy: Number of votes and total score should be accurate and saved and should not be lost in calculations ----------------------------------------------- Real time: Rate/score should be displayed after rating instantly ----------------------------------------------- Reusable: It should be easily plugged into any table for reusability ----------------------------------------------- Avoiding multiple ratings: Basic mechanism to avoid multiple ratings by the same user ----------------------------------------------- Best approach: Compare the pros and cons for both Amazon and Ajax approach ----------------------------------------------- Security: Few words ----------------------------------------------- More discussion can be found on http://www.codeproject.com/useritems/RatingDemystifiedAjaxWay.asp ----------------------------------------------- ONINE DEMO http://interviewinfo.net/rating/photo.aspx -----------------------------------------------
Universal Database Admin for ASP.NET and SQL Server----------------------------------------- A dynamic web application needs an admin section for CRUD action of the database, wouldn't it be nice if we can have a universal database administration, which can be plugged to any web application, Just give your sql connection string and it generates pages for Create, Read, Update and Delete ----------------------------------------- Description This following code describes an asp.net web module which can be added /cutomized in any sql driven web application as a database administration. When i first started with an admin section of a web application, i thought why not try to make something more general a plug-n-play admin section which can be used for any SQL driven dynamic web application so here is the result of the effort. ----------------------------------------- The Target was. 1. Create a self sufficient Admin section which can be put into any SQL driven web application by changing the connectionstring for SQL server in web.config ----------------------------------------- 2. User needs to Login before doing the CRUD (create/Read/Update/Delete) operations ----------------------------------------- 3. There should be individual pages one for each operations(CRUD) which will take tablename as parameters ----------------------------------------- 4. A dataAccess class which wraps all the data access methods and returns values or records as required. Assumptions ----------------------------------------- These were the initial thoughts but to make it a general module i made some assumptions 1. Every Table has One Primary Key and It is the First Field in the Table There is atleast one AdminUser table in the SQL database which has a Permission field with value "Admin" for the users to login to the admin section for CRUD operations ----------------------------------------- The Web.config looks like this A Connectionstring and AdminTable name in the web.config <appSettings><add key="ConnectionString" value="Data Source=YourdatasrcIP;POOLING=FALSE; database=YourDatabasename;User ID=YouruserID;Password=YourPassword" /> <add key="AdminTable" value="YourAdminTableName" /> </appSettings> ----------------------------------------- MORE UPDATES AND DISCUSSION AT http://www.codeproject.com/script/articles/list_articles.asp?userid=81898 -----------------------------------------
Globalization of Windows Application in 20 Minutes using C#
AJAX RATING SYSTEM ----------------------------------------------- ASP.NET web module along with some chunks of Javascripts and ...Ajax to create a Rating System. ----------------------------------------------- This can be added /customized for any table to add a rating/score module. I was quite amazed, when i first saw the capability of rating multiple items at amazon website without refreshing the page. ----------------------------------------------- The target was to create a cross browser rating/score system like amazon or better: ----------------------------------------------- Rating: User should be able to Rate a record (1-5) ----------------------------------------------- Accuracy: Number of votes and total score should be accurate and saved and should not be lost in calculations ----------------------------------------------- Real time: Rate/score should be displayed after rating instantly ----------------------------------------------- Reusable: It should be easily plugged into any table for reusability ----------------------------------------------- Avoiding multiple ratings: Basic mechanism to avoid multiple ratings by the same user ----------------------------------------------- Best approach: Compare the pros and cons for both Amazon and Ajax approach ----------------------------------------------- Security: Few words ----------------------------------------------- More discussion can be found on http://www.codeproject.com/useritems/RatingDemystifiedAjaxWay.asp ----------------------------------------------- ONINE DEMO http://interviewinfo.net/rating/photo.aspx -----------------------------------------------
Universal Database Admin for ASP.NET and SQL Server----------------------------------------- A dynamic web application needs an admin section for CRUD action of the database, wouldn't it be nice if we can have a universal database administration, which can be plugged to any web application, Just give your sql connection string and it generates pages for Create, Read, Update and Delete ----------------------------------------- Description This following code describes an asp.net web module which can be added /cutomized in any sql driven web application as a database administration. When i first started with an admin section of a web application, i thought why not try to make something more general a plug-n-play admin section which can be used for any SQL driven dynamic web application so here is the result of the effort. ----------------------------------------- The Target was. 1. Create a self sufficient Admin section which can be put into any SQL driven web application by changing the connectionstring for SQL server in web.config ----------------------------------------- 2. User needs to Login before doing the CRUD (create/Read/Update/Delete) operations ----------------------------------------- 3. There should be individual pages one for each operations(CRUD) which will take tablename as parameters ----------------------------------------- 4. A dataAccess class which wraps all the data access methods and returns values or records as required. Assumptions ----------------------------------------- These were the initial thoughts but to make it a general module i made some assumptions 1. Every Table has One Primary Key and It is the First Field in the Table There is atleast one AdminUser table in the SQL database which has a Permission field with value "Admin" for the users to login to the admin section for CRUD operations ----------------------------------------- The Web.config looks like this A Connectionstring and AdminTable name in the web.config <appSettings><add key="ConnectionString" value="Data Source=YourdatasrcIP;POOLING=FALSE; database=YourDatabasename;User ID=YouruserID;Password=YourPassword" /> <add key="AdminTable" value="YourAdminTableName" /> </appSettings> ----------------------------------------- MORE UPDATES AND DISCUSSION AT http://www.codeproject.com/script/articles/list_articles.asp?userid=81898 -----------------------------------------
Globalization of Windows Application in 20 Minutes using C#
AJAX RATING SYSTEM ----------------------------------------------- ASP.NET web module along with some chunks of Javascripts and ...Ajax to create a Rating System. ----------------------------------------------- This can be added /customized for any table to add a rating/score module. I was quite amazed, when i first saw the capability of rating multiple items at amazon website without refreshing the page. ----------------------------------------------- The target was to create a cross browser rating/score system like amazon or better: ----------------------------------------------- Rating: User should be able to Rate a record (1-5) ----------------------------------------------- Accuracy: Number of votes and total score should be accurate and saved and should not be lost in calculations ----------------------------------------------- Real time: Rate/score should be displayed after rating instantly ----------------------------------------------- Reusable: It should be easily plugged into any table for reusability ----------------------------------------------- Avoiding multiple ratings: Basic mechanism to avoid multiple ratings by the same user ----------------------------------------------- Best approach: Compare the pros and cons for both Amazon and Ajax approach ----------------------------------------------- Security: Few words ----------------------------------------------- More discussion can be found on http://www.codeproject.com/useritems/RatingDemystifiedAjaxWay.asp ----------------------------------------------- ONINE DEMO http://interviewinfo.net/rating/photo.aspx -----------------------------------------------
Universal Database Admin for ASP.NET and SQL Server----------------------------------------- A dynamic web application needs an admin section for CRUD action of the database, wouldn't it be nice if we can have a universal database administration, which can be plugged to any web application, Just give your sql connection string and it generates pages for Create, Read, Update and Delete ----------------------------------------- Description This following code describes an asp.net web module which can be added /cutomized in any sql driven web application as a database administration. When i first started with an admin section of a web application, i thought why not try to make something more general a plug-n-play admin section which can be used for any SQL driven dynamic web application so here is the result of the effort. ----------------------------------------- The Target was. 1. Create a self sufficient Admin section which can be put into any SQL driven web application by changing the connectionstring for SQL server in web.config ----------------------------------------- 2. User needs to Login before doing the CRUD (create/Read/Update/Delete) operations ----------------------------------------- 3. There should be individual pages one for each operations(CRUD) which will take tablename as parameters ----------------------------------------- 4. A dataAccess class which wraps all the data access methods and returns values or records as required. Assumptions ----------------------------------------- These were the initial thoughts but to make it a general module i made some assumptions 1. Every Table has One Primary Key and It is the First Field in the Table There is atleast one AdminUser table in the SQL database which has a Permission field with value "Admin" for the users to login to the admin section for CRUD operations ----------------------------------------- The Web.config looks like this A Connectionstring and AdminTable name in the web.config <appSettings><add key="ConnectionString" value="Data Source=YourdatasrcIP;POOLING=FALSE; database=YourDatabasename;User ID=YouruserID;Password=YourPassword" /> <add key="AdminTable" value="YourAdminTableName" /> </appSettings> ----------------------------------------- MORE UPDATES AND DISCUSSION AT http://www.codeproject.com/script/articles/list_articles.asp?userid=81898 -----------------------------------------
Globalization of Windows Application in 20 Minutes using C#
AJAX RATING SYSTEM ----------------------------------------------- ASP.NET web module along with some chunks of Javascripts and ...Ajax to create a Rating System. ----------------------------------------------- This can be added /customized for any table to add a rating/score module. I was quite amazed, when i first saw the capability of rating multiple items at amazon website without refreshing the page. ----------------------------------------------- The target was to create a cross browser rating/score system like amazon or better: ----------------------------------------------- Rating: User should be able to Rate a record (1-5) ----------------------------------------------- Accuracy: Number of votes and total score should be accurate and saved and should not be lost in calculations ----------------------------------------------- Real time: Rate/score should be displayed after rating instantly ----------------------------------------------- Reusable: It should be easily plugged into any table for reusability ----------------------------------------------- Avoiding multiple ratings: Basic mechanism to avoid multiple ratings by the same user ----------------------------------------------- Best approach: Compare the pros and cons for both Amazon and Ajax approach ----------------------------------------------- Security: Few words ----------------------------------------------- More discussion can be found on http://www.codeproject.com/useritems/RatingDemystifiedAjaxWay.asp ----------------------------------------------- ONINE DEMO http://interviewinfo.net/rating/photo.aspx -----------------------------------------------