Building A Forum Site?

Jun 20, 2010

I need assistance on the following issues, i am trying to create a site which involve forum , i need code for the following. or i need schema and data type for

1. last post

2. views

3. replies

4. user onlines

5.total post

6. thread.

7.last post like less than 5 minutes

View 14 Replies


Similar Messages:

Building And Using A Utility Class For Forum?

Jan 6, 2011

I think this may be a question for the architecture forum, but it feels a bit newb to me, so here goes.

I'm trying to write a utility class to use throughout my C# ASP.NET websites. I am having trouble getting intellisense to see the methods in my class. What I'm doing is creating a static class and putting it in a namesapce and with a using directive, importing that class into the code-behind of my web form. But it's not working. I would also like to minimize the visibility of the code i.e. use the least accessible access modifier necessary for use in my util class.

[code]....

View 6 Replies

Security :: Building A Forum From Scratch - Registering Users To Database

Apr 6, 2010

I am in the process of creating a forum design from scratch, as my first official asp.net application attempt.

Overview:

I would like to handle this task in the following steps:

1) Get input from the user: txtLoginEmail, txtPassword

Form has been submitted:

2) Process inputs a) cut/trim white spaces

b) encrypt password by using SHA1 hashing method located in clsLibrary

3) Check the email address given against the database

Match: Display a message saying that the username already exists.

Doesn't: Add the email address and add encrypted password into the database

Question:

In my Register.aspx.vb code-behind file, inside of the question mark lines, how exactly do I check against
the database to see if that user exists in that database already? I thought perhaps storing the results in
an array and then looping through it to look for matches, but that sounds inefficient. I tried this idea
and after an hour I was unsuccessful. Below is my code for the class objects and pieces of code relevant to this task:

Database Design
---------------
UserID int IDENTITY(1,1) PRIMARY KEY,
UserEmail varchar(50),
UserPass varchar(50)
[code].....

View 4 Replies

C# - Integrating A Discussion Forum Into An .NET Site

Jan 30, 2010

I have an ASP.NET WebForms public business site. I want to integrate a discussion forum into my site. However, I don't want people to have to log in twice. Can someone recommend a ready made discussion forum solution that I can drop into my site, yet be able to customize with my login infrastructure?

View 1 Replies

Site Or Forum That Is Good Source Of Information On How To Use Different Aspects Of Their API

Sep 2, 2010

I'm attempting to use the DotNetCart ecommerce module in a solution we are building. The problem i'm having is that i'm finding that the included .chm documentation is quite lacking. I've brought this up with their support dept and received no help there. My question is, is there a site or forum that is a good source of information on how to use different aspects of their API?

View 2 Replies

.NET And PHP For Building An Auction Web Site?

Jul 24, 2010

I need expert advises about building an auction web site in general and I dont need code help.I stopped one year for developing web sites and I need to know which is more suitable and easy to extend to build this web site

If I used ASP.NET which ORM I should use or I dont have to use it ? and should I use expression web as the IDE ? I know also there is some good PHP frameworks like CodeIgniter, CakePHP ,etc... but which one is the best for all development cycle ? or should I use Joomla and just build plugins ?Which JS framework also is more suitable for build fast and cool UI ?

I learn fast so dont worry about the learning problems I just need expert advises about what I should use today to enforce the rules for building clean , standard and cool modern web site.

View 1 Replies

Security :: Building A Web Site That Has Two Masterpages?

Oct 18, 2010

I'm building a web site that has two masterpages - one for the average user/visitor and one for the admin. The admin logs in and is redirected to admins masterpage that has some special features. If the admin goes to one of the visitor pages, he/she is redirected back to the visitors masterpage and is automatically logged out (cannot reach the admin pages without logging in again). Is it possible to keep the admin logged in no matter wich pages he/she goes to on the site until the logout-button is clicked?

View 2 Replies

Web Forms :: How To Make A Forum, Step By Step , In The Forum People Show Their Picture And User Name

Feb 27, 2011

i do knot know how to make a forum, step by step , in the forum people show their picture and user name

View 3 Replies

MVC 3 Building Dynamic Meta Keywords Meta Description Functionality For Multi-culture Site

Feb 10, 2011

create db driven meta keywords/description. I would store these records in a database, xml format i presume; since it would be per culture.How would i go about doing this?

View 4 Replies

Want To Create A Forum Like "forum" In My Application?

Dec 20, 2010

I want to Create a forum like "asp.net forum" in My Application.So i want to know that easy flow of making forum list in my Application and how to store it in database.I dont want to make my page loading time is slow. .

View 6 Replies

Rewrite The Url In Forum?

Apr 5, 2010

I have a forum on my website

what i need to do is to rewrite the url :

[URL]

to

[URL] to dogracer players

Is there any quick way to achieve this.

The rewrite should be dynamic because each posts in the forum should have a rewritten url

View 5 Replies

Is There A Forum For Asp Classic

Nov 23, 2010

Just two many pages to re-write. A Microsoft consultant informed us it would cost about $750,000 to rewrite all of our pages. The school district's budget is only $67,500 so this is out of the question. Therefore I am going to have to stick to asp Classic.

View 1 Replies

How To Create A Forum Like Structure In ASP C#

Jun 29, 2010

i want to create a forum like page in ASP ,C# where user can enter some question.
Administrator reply this question,according to if user does not satisfied with the solution then in same thread he may ask for further clearance.for example the forum of asp.net ( the current page)

View 5 Replies

How To Create A Simple Forum

Jan 6, 2011

Hey guys, i have some problem here. How can i create a simple forum in asp.net? using wat toolbox?

View 12 Replies

Php - 'www.example.net' And 'forum.example.com/content' Two Different Web Sites?

Sep 4, 2010

There is a website www.example.net and it has a Forum link on its home page which leads to forum.example.com/content.

I found out that the main site has been developed using the .NET Framework, and the forum has been built using PHP based vBulletin.

Are these two different domains? In other words, is the Forum some folder inside the Visual Studio Project www.example.net running as part of the ASP.NET website? Or is "forum.example.com/content a link to an altogether different website?

View 7 Replies

Comments Forum In A Web Page

Oct 10, 2010

i have this forum page on my website. I want when users leave comment, the old comments should be at the bottom and new comments at the top. The code for that is below:

<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString2 %>"
DeleteCommand="DELETE FROM [forum] WHERE [Postingid] = @Postingid"
InsertCommand="INSERT INTO [forum] ([UserName], [TheDateTime], [Subject], [Message]) VALUES (@UserName, @TheDateTime, @Subject, @Message)"
SelectCommand="SELECT * FROM [forum] "
UpdateCommand="UPDATE [forum] SET [UserName] = @UserName, [TheDateTime] = @TheDateTime, [Subject] = @Subject, [Message] = @Message WHERE [Postingid] = @Postingid">
<DeleteParameters>
<asp:Parameter Name="Postingid" Type="Int32" />
</DeleteParameters>
<InsertParameters>
<asp:Parameter Name="UserName" Type="String" />
<asp:Parameter Name="TheDateTime" Type="String" />
<asp:Parameter Name="Subject" Type="String" />
<asp:Parameter Name="Message" Type="String" />
</InsertParameters>
<UpdateParameters>
<asp:Parameter Name="UserName" Type="String" />
<asp:Parameter Name="TheDateTime" Type="String" />
<asp:Parameter Name="Subject" Type="String" />
<asp:Parameter Name="Message" Type="String" />
<asp:Parameter Name="Postingid" Type="Int32" />...........................

View 1 Replies

Architecture :: Want To Built Like Asp Forum?

Mar 12, 2010

This is my doubt.For example, select "Getting started" forum in asp.net site. It lists lots of threads.Whenever i click on the thread new page will be open. For example if i click a thread means it will opens a page "http://forums.asp.net/t/1535090.aspx" and if i click another thread means it will open other page "http://forums.asp.net/t/1535453.aspx".

My question is for each thread is there asp.net team maintains separate pages like (1535090.aspx, 1535453.aspx etc). Whats the logic behind this one?Please explain. I'm also try to want built the forum like this.

View 7 Replies

Create Forum Discussion Panel?

Mar 6, 2010

i wanna create a forum discussion panel for my webapplication just like ASP.Net forum....there i can apply background on each post...and that should be very user frendly....where user click on the reply button of thread than reply box should appear just bottom of that thread...and that reply box should open very stylist just like sliding.

View 2 Replies

Access :: How To Show Category And Forum

Aug 25, 2010

I would like to make script that show category and all its forum that 's why I have created table 'cat' ( id , CAT_TITLE )( table for category) and an other table for forum name ' s 'forum' ( id , name,CAT_ID)

my question how I can show category and the forum by using repeater or another control like http://forums.asp.net/

View 2 Replies

How To Create The Forum Database In Sqlserver

Feb 25, 2011

how to create the forum database in sqlserver. what tables & columns are required in it .

View 3 Replies

C# - NOSQL Database Selection For Forum?

Oct 20, 2010

i am developing a FORUM i am using asp.net, c# language for code. I have read a article about NoSql i inspired a lot from there advantage over RDBMS (sql) so i was thinking that should i use NoSql concept for Forum DataBase or not. I am not a expert in database. So can u suggest me should i use NoSql? Currently I am using sql(rdbms).

View 1 Replies

How To Add DotNetNuke Forum To Default C# Website

Jun 21, 2010

I'm trying to add Forum module to my Web Site , so I add dlls, components and modules and :

[Code]....

so how can add the forum from DNN to my page ? or how to fix this error

View 1 Replies

MVC :: Creating A Simple Message Forum?

Jan 18, 2011

im messing around with MVC3 and Razor trying to learn what i can here. Im trying to create a very simple post and replies site while learning all this new stuff.

[Code]....

I have two tables one for messages and one for replies. @model MvcGroupie.Models.Message this starts off the page but i cant add @model MvcGroupie.Models.Reply or it wipes out the other. I tried using a partial view as you can see to do this and that fails too.

So i cant then add

@Html.EditorFor(model => model.replyBody)

View 3 Replies

Open Forum Source Code?

Jan 22, 2010

i been looking for a simple asp.net forum .([URL]) I been googleing for atleast 10 hours. i want the forum to use asp.net c# sql 2005

View 6 Replies

Index Forum Discussions For Search?

Sep 21, 2010

For a discussion forum, does it work better to index each entry inside a discussion thread as a separate lucene document or simple concat all entries within a discussion into one big block of text and index a whole discussion thread as a single lucene document?

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved