C# - Online Timetable Creator Which Takes The Information From Different Schools?
Oct 19, 2010
I wanna build an online project by using ASP.NET ,It is an online timetable creator which takes the information from different schools , stored them in a DB then build a timetabel object for each school.first: what type of a website/project should i use in visual sudio 2010?second: how i can store the timetabel object -that made from C# class- and make reference to its school row in a DB?
I wondered how the more experienced .netters out there would go about creating something whereby users could create online surveys? I can't get my head around it at the moment as I have my survey object but need to store different object types of questions within it. Also does anyone think that creating some custom controls could be the way to go? (survey question controls)
I am developing a Web Application that shows the cost of energy based on the electric tariffs.I need some kind of timetable that allows the user to define different electric tariffs with different intervals of hours for every day of the week.I need something flexible, but only for a week. I do not need a calendar or a scheduler.I didn't find any control that is simple, flexible, and integrates with .NET.
I want the creator of a row in the database to be able to enter and edit as well as members of a certain group, i have this string of data for the final part.
string isRsoString = Session["isRsoAdmin"].ToString(); if (isRsoString == "0") { Response.Redirect("Default.aspx?status=noaccess");
How do i get it to check if its the creator of the row? the creators username is stored in the table under the column RequesterName
I create one page for school site , in this master timetable page all periods and all days entered but this how to edit each line like days wise, for example i selected satrday , in this all periods and all subjects are selected
I'm trying to add two features to my website using the microsoft built-in login features. One feature I want to change is the validation of the username. By default, it allows pretty much any characters for the username. However, I want to make it so that only alphanumeric characters, and spaces. Also, I want to make it so that usernames MUST begin with a letter. I'm not entirely sure how to do this, In addition, I want to configure it so that once an account is created, a file /users/(their username)/(their username).aspx created once they are authenticated, with the master page set to userProfileMaster.master
I want to develop a dynamic time table for a school.But the subjects and periods are not fixed ...so there can be any number of rows and columns in this which will be decided by user at runtime.when user enters number of row and columns according to that a table layout will be displayed and Each cell of my Table will Contain a Textbox in which user can write somthing..and when he clicks on save button the entire table will saved as it is....should i use Gridview to accomplish my need ????pls if u have any other better idea to develop this complete this task in a proper and rich way
Recently i am develop a tuition center management systemNow i want to show a timetable which admin can view and know what time the class room is emptyMy timetable is : On the top of x-axis is time (8am, 9am, ...)On the left of y-axis is date (monday, tuesday, ...)In database i will define the start time and end time for each class
I 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 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 am making an online form (literal form) that needs to have a certain function: when the user enters a 5-digit number, the form should automatically query the MS SQL DB and retrieve information associated to that number and populate other form elements (text boxes, etc.) accordingly.
So say the # was 12345 and in the DB, the record matching 12345 has name=Fred. So, when I enter 12345 into the form textbox, the name text box should be automatically populated with Fred in it.
If this is not easily achievable, I guess a submit button beside the 5-digit number text box can do.
I am still learning my way around ASP.NET and Visual Studio 2005, however I have ample experience with HTML, CSS, JavaScript, C/C++. The ASP.NET app is to be written in C#.
I have a aspx page which contains 6 user controls which will be displayed when the user clicks on any button using show model pop up extender. My page rendering takes more time. it taked 3 minuits to load the page. If i debug the page its traveling to page load of all the user controls. Its not taking more time to fetch the data from database but its taking time to load the page. Is there any way to improve the perfomace .Is there any place where i have to look into.I am using VS 2010 and c# .
I'm working with a ListView and I have a problem: When I click the delete button, I need to know before deletion takes, the index of the item, because I have to do something before this event happen
I have my own jpg to add to the page and I want to onclick take me to another URL.I tried image control but it does not have naviagte URL property and it does not have onclick eventhandler.What control I should use and how to code it /which property to set URL ?
I have a stored proc that takes a bit long to run. I tried to do this command.CommandTimeout = 200;still gets time out within 200 secs.How is this done?
I am a PHP MYSQL person but now i have got webiste to do it ASP.net.I kow nothing about ASP.NET. INitially i was thinking of ASP.NET as a programming language but now i now its not , i really don't know what it is.Someone told me that i have to do c sharp to build the website. I i have to display simple data from database how much different is c sharp from php.Does it has all function like php to echo stuff etc
When I initialize my client to connect to AppFabric's cache, it seems to inconsistently take up to 30 seconds to connect on the following line:
factory = new DataCacheFactory(configuration);
See full Init() code below - mostly taken from here.I say inconsistently because sometimes it takes 1 second and other times 27, 28 , etc ... seconds. I have an asp.net site using the AppFabric cache - which lives on a different box (on the same domain). Everything is working great, except for the inconsistent connection time. When it connects, its all good - I just need to get it to consistently connect in ~1 second :)
public static void Init() { if (cache == null) { Stopwatch sw = new Stopwatch(); sw.Start();
I am trying to show an image on Mouseover and hide it on Mouseout. I am successful in mouseover and mouseout but the image is actually taking the space around the text though i have visibility as hidden..The text is surrounded with the space of image but the image is displayed on mouseover. Here is the code: