Calender Booking System [closed] - asp.net

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am trying to create an booking system using ASP.net in Visual Studio VB I am using the calendar and I am briefly aware of the calendar controls. But I want to know how can I add a database behind a calendar is that possible? or not?
I ideally want the calendar booking times and then extra information.so they all need to read in form one another.

Here's a link to another example of a calendar that interacts with a SQL Server Database to add events to the calendar. Hopefully, this will be helpful.
http://forums.asp.net/post/4224068.aspx

Related

How Can I implement monthly attendence chart (ASP.NET) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have a aspx webpage in which I want to display employee's monthly attendance in a chart.
So suggest me which chart can I use to do this task and also how to implement it.
And chart must me able to show day,time,workinghours,daytype.
I already have a sql table for it.
There are various chart libraries for it. But I would suggest CanvasJs or D3.js
These are super flexible and customizable. You can do whatever you want.

Microsoft access form view [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am creating a Microsoft access application, and I designed a login form, where the user inputs username and password. I want the form view of the form to be showing above the access window, as a pop-up... how do I achieve that?
Set the Popup property for the form to Yes. You probably also want to set the Modal property to Yes, which will disable the application window until the form is closed or hidden.

How do I make my website remember variables? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to make my website remember variables for each user and display them, something like local storage that I can use in c#. What is the best way to achieve this concept?
ASP.NET Session State is what you are looking for.
http://msdn.microsoft.com/en-us/library/ms972429.aspx
Or if you want permanent storage (ie they leave and come back another day)
Connecting to a SQL Server database.

Using Password Recovery control with my own database [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to use the password recovery control of asp.net, but with my own database, I dont want to use the membership table that is already provided. Is there a way to do this? I have searched on google but did not get a single one that is relevant to what I want to do. Please Help. Thanks
The general approach to this would be to implement your own MembershipProvider, this would allow you to override the default behaviour. However, you would need to implement all the behaviour, not just the stuff you want to change (see this example).
You can implement the GetPassword / ResetPassword methods and have them work from your own database rather than the membership table.

How to set the different language for asp.NET application? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am new to development of asp.net applications... I want to give different language options for the user to choose as he wishes.
Thanks in advance
The best way to do this is to have all the text for your site set in a language table in your database. Every piece of text. Set a unique ID for each languae, 1=English, 2=Spanish, and so on. Then, when populating the text on your page, rather than calling up the text from a static table, call it up from the Language table for that ID.

Resources