How To Check Time Duration To Online Exam
Jan 27, 2010created a project in c3.net of online exam wan to set time duration on server side
View 1 Repliescreated a project in c3.net of online exam wan to set time duration on server side
View 1 RepliesI want to create a Online Exam site in ASP.NET .In that i want to display Test based on the Date and time and the user can take the test at the time set my the Teacher.
For Example:
Teacher want to take C Test for the Mid Semester Test and the test is schedule on 1 May 2010,then the test should appear on the test page on the 1st may only and the user should be able to take the test on the set time.
The problem is that if i use System time then user can change the system time and can take the test schedule in future.
So i want to know how can implement this thing.I have given many online test but dont know how they work out the time and date logic.
I want to develop a Online Exam Management Project using asp.net and sql server. I want to know whether there is any open source project available for the same.
View 2 RepliesFor an online examination system, user actions/answers to be stored and later retrieved if user connection is down. Which logic should be preferred, client side logic [cookie], or server side logic [Session/Database]?
[Edit]
How user answers will be stored? using specific timer interval for storing user answers? or after specific parts of exam? What is best practice for implementing such solutions?
I have a web site where i can upload videos. Here i have a requirement that while uploading i should validate that user should not upload video with more than 1 minute duration.
So i doubts how we can implement this validation.
in my application i want to display the duration time of the video ( that is time of the video) in asp.net
View 2 RepliesI am using MSACCESS as back end.And as we can get database back up in the SQL server after particular time.I want that kind of back up in MS ACCESS.How can i get it..
View 5 RepliesI have a query like i want to show the time information in custom format like(1min 06sec) from date .I have a filed Duration in database and when i am binding my data control then in item i want to display in above format(1min 06 sec),so is it possible?
View 3 RepliesALTER PROCEDURE [dbo].[backup_database]
(
@DbName VARCHAR(250),
@dbpath VARCHAR(500)
)
AS
DECLARE @Currentdate VARCHAR(10)
DECLARE @Currenttime VARCHAR(15)
BEGIN
BEGIN TRY
SET @Currentdate =CONVERT(VARCHAR(10),GETDATE(),105)
SET @Currenttime = REPLACE(RIGHT('0'+LTRIM(RIGHT(CONVERT(varchar,getDate(),100),8)),8),':','-')
SET @dbpath = @dbpath +'' +@Currentdate+'_'+@Currenttime+'_'+@DbName +'.' + 'bak'
PRINT @dbpath
BACKUP DATABASE @DbName TO DISK = @dbpath
END TRY
BEGIN CATCH
SELECT
ERROR_NUMBER() as ErrorNumber,
ERROR_MESSAGE() as ErrorMessage
PRINT 'Backup Could not be taken for '+@DbName+''
END CATCH
END
I want to run the above procedure at an interval of 8 hours.
I use media player control to play mp3 files in asp.net application. I want to find When the playing process gets end and the total time require to finish the file using javascript.
[Code].....
How find out time duration in asp.net using drop down list Control? Result will display in textbox.
View 13 RepliesI want to terminate the session after specific time. So how can solve it.
View 3 Replieswhat is the logic behind this on this website "last activity: 1 min ago from this ip address " If you are obtaining the user's IP address in a hidden field , how can I do this in vb.net ?
And how can I check how many users are online using the application ?
i have using aspnet DataBase, and i know that i can Check if the User is OnLine or not By Using
Membership.GetUser.isOnLine; this is when invoke method in asp.net Page , But i want to Know if there is another way to Check If the User OnLine or Notfrom aspnet dataBase
I'm developing an online auction with time limit.
The ending time period is only for one opened auction.
After logging into the site I show the time left for the open auction. The time is calculated in this way:
EndDateTime = Date and Time of end of auction;
DateTime.Now() = current Date and Time [code]....
The problem is that when I login from different browsers at the same time the browsers show a different count down.
I m developing online examination website.
I want to show remaining time during examination without java script code.
I tried that by adding 10 minuts in starting time of examination and then continuously subtracting current time from that added time.
I m using label to show time . But it gives conversion error.
How to Display online users as green and offline as grey using real time updates..
View 1 Replieshow to add an exam booking audit trail to the database, where we can determine when and who has uploaded exam results
View 2 RepliesI am developing a simple online DBMS to browse my database online.... the main concern for me is to clear everything from the PC when the user disconnect so no body can go and click (Back) on the browser and see the pages if the user forgot to close it.. what I have done so far is :
[Code]....
I am sure this is not enough.. am I right? so what else I should include there?
I have created one exam module where user will give the answers of objective questions.I have created next buttoon now i am getting first question in form load and now on click of next button shall i increase the question no +1 or some thing else.
View 1 RepliesRight now I'm using a 3rd party provider to get some data. Every time I call the service I need to pay a small fee for the data. I'm wondering if there is a method in sql or c# that can store the data in a personal database, then check (after a specified timeframe) whether or not there is new data at my 3rd party provider.
For example, instead of "calling the service"/"looking for the data" each time the page is loaded, I'd like to look for new data every week or so and store the data on a personal database to use for the next week. This helps me cut on the costs and also speeds up my system.
I'm not looking for any code here, just a simple way to execute/problem solve. My tools are VS, c#, SQL, asp.net/html.
how to check session every time.
View 6 Repliesselect multiple check boxes at a same time using c#? send me the codings.....
View 3 RepliesI am developing a website in ASP.NET with SQL SERVER as backend.
I want to find the best(FASTEST) way by which I can find if USERNAME exists or not.
My application is taking a bit of time finding that out. Do I need to look into my TABLE structure,indexes.
Is there any replacement for the query
Select username from usermaster where username=@Username
I am writing a chat application, in which a chat starts in a chat room. Now, i want this room active only for a certain amount of time and not more. i.e 1 hour etc. So, to check the time constantly what and how should i write something in the background, so that when the time is over, the sessions of all the users logged in at that chat room get destroyed. And the users are again redirected to the login page. e.g The chat has been setup from 3 to 4 pm. At 3.55 everybody should be given a popup that the chat will end in 5 mins. And at 4 everybodys session should be destroyed and they should be redirected to the login page.
View 6 Replies