Create A Poll Without Database?
Apr 7, 2010How can I do to create a poll without database.
View 1 RepliesHow can I do to create a poll without database.
View 1 RepliesMy Web App is news application,with each news enabled to insert poll system to evaluate good or bad ...anything.
View 4 RepliesHere's what I am trying to do. I have a website that lets users submit requests that are queued up in a Jobs table that the service picks up and processes. I have a status column in the table that denotes whether the request is queued up for processing or being currenty processed by the service or the service has completed processing the request. The entire process takes a few minutes.I have a Status ASP.NET page in which I will need to show the current status of their request on a real time basis. I want to display some kind of animation and denote the current status. One way I could do this is to have a meta http refresh every x seconds that checks the status of the request (I guess this is how sites such as Expedia, Priceline does it?) would like to prevent a complete page refresh is possible and looking for a AJAX/JQuery solution. How would I implement this? Is polling the correct approach?
View 4 RepliesCould you elborate how to save it in DB? Because all the users are unauthenticated
View 1 RepliesI want to implement poll in my website and its a public available website so any one can vote. I want to know which might be the best option for creating poll. In my opinion there is only cookies in which i can store information and check if this user has submit a poll. My website is multi-lingual and im using Asp.net-mvc 2
View 2 RepliesI want to know how to show the results of a poll with graphics using asp.net.
View 4 RepliesNow i'm developing a poll system which enable change dynamic layout , independance coder and designer.
View 1 RepliesFrameworks like Node.js, Tornado, and Twisted let developers create server-push applications that supports large number of concurrent hanging requests (10k+). From what I understand, they all achieve this by not creating threads to service each hanging request.
Can AsyncController be used to service large number of inactive concurrent requests?If so, are there any reasonably large ASP.NET MVC websites using this approach to create long-poll applications?
heavy operation which takes long time to be completed in my asp.net application. I don't want to run the entire operation in one request which may result in a TimeOut error. Instead I want to invoke the operation in a separate thread and poll for the result every x seconds. How can I do this?If the operation gets completed I need to register a script in the ajax postback to hide the loading panel and show the content. However I'm not able to register new scripts and invoke it during ajax postbacks.
View 2 RepliesI've a poll website with few tables :
poll
poll_question (id_poll, question, type_question ...)
poll_answer (id_poll_ans, id_poll, ans1...default)
type_question (id_type, type) type is dateValue, dropdownlist, checkbox or value)
If question have several answer like (yes, no.... or value in a dropdownlist then i will have to get this value from poll_answer)
So my question is ... how can i do to introduc this datas and dynamicly load the good kind of control, (dropdown or textBox or checkbox...)
you could create your own custom Profile provider that operates against existing database tables .i want u to help me out if u have an idea where i can get steps by steps to carry out the above operation.i know there are various options in creating profile , particularlly the use of web. configuration, the default ASPNETDB, and XML files, BUT i wish to use an existing database which i prefer.
View 11 Replies how I can correct an error. I've built the MVCMusicStore tutorial here:
http://mike-ciccone.com/Store/
The first time I visit the site and attempt a database connection I get this error:
Exception Details: System.Data.SqlClient.SqlException: CREATE DATABASE permission denied in database 'master'.
But when I refresh, it all works fine. I'm at a bit of a loss. I don't believe I'm attempting to create a database, but I realise that the error may not really have anything to do with that. This is hosted at GoDaddy shared hosting. The database was created and I used an SQL script to create the tables initially and populate the data. My connection string works as I can pull data from the database, but I do have
a feeling it will be a web.config setting that will correct this.
I am working on asp.net membership website. I created the membership provider automatically, and now its stored in sql express database within the solution. I want to move all the tables to sql database instead of sql express. Last night I attached the sql express database to the sql server management studio, and I was able to see all the objects. Then, I run my solution in visual studio, and I got error: LOGIN FAILED for the sql express database, and the solution wasn't running.
I have two questions.
1. Why is that happening?
2. If I create the same database in sql server with the same objects, and then point to the sql server database instead of sql express database, will I have problems with the membershop provider?
how to create my own namespace of database connectivity in a project and use in .cs file of every .aspx page ??
View 1 RepliesI have to create menu bar with SQL Database and this should be availble in my all the pages.
View 1 RepliesI want to create 2 login actionresults from 2 user's tables, one user's table is from aspnetdb.mdf and its for admin and its already created by MVC itself, the other user's table is from my own database and I want to create it for general users "subscribers "
View 10 Repliesi have a mssql database in my local machine and i have a new mssql database on server
i created the local database with sql server express and in my server i have a sql server database
now all i need is to create the tables as it is in local database in my server database the data inside of database is not importent i just need the tables
how can i create my new database tables like in my local database with all trigers and relashen ships?
i have a table ("WebSettings") that have some information about Website like what is the name of website which theme use and so on i want to creat a class to return the website settings can you give me some information obot what is the best way in this case to get the informations and how can i creat this class?
View 1 RepliesWe are trying to implement a calendar in an asp.net page and link it a database. The calendar should highlights dates based on data in the database tables similar to airline ticket booking calendar.
View 2 Repliesi am new to asp.net. i like to learn asp.net and c#. when i try to connect to sql server, it asks server name. i don't know server name and it asks database name also. how to create database and where can i access like phpmyadmin. in phpmyadmin i can create database and tables.
View 9 RepliesI would like to make a website where you can type in the url [URL] and the webpage will retrieve the article and display it in the articles view.
How would I best go about doing this?
Would I use a SQL database? Xml files? Text Files?
i am creating a software., in that i want to form menu in treeview structure.the parent node, child node and sub child node location are stored in database table SQL 2005..using coding i have to display the treeview menu structure to the screen when the page loads and that too without any flickering on page load...i need in javascript or C#
View 2 Replieshow to create the forum database in sqlserver. what tables & columns are required in it .
View 3 Repliescan anyone tell me how to create a sitemap dynamically from a database
cuz I have tried all the static generaors without any good result
In linqtosql you could do something like:
datacontext.CreateDatabase() to generate a database from the model in sql.
I'm wanting to do the same thing in linq to entities.
Say I have a class MyEntities which inherits from ObjectContect is there a similiar method?