Web Forms :: Way To Mae Forums In Web Application

Oct 30, 2010

I have a web Application in .net 3.5 sp1 in which i need to added some forums functionality like Post forums (as we post on forums.Asp.net) and 1 shoutBox in which all registerd user leave there Messages....an any one tell me that what is ways of acheiving itLike i create this as new Project or i add this functionality from interne

View 8 Replies


Similar Messages:

Web Forms :: Which Editor Does Forums .net Uses

Apr 10, 2010

I want to use an editor contorl for my website and i want tit exactly like this Website Can you please tell me which is the editor it is??

View 1 Replies

Web Forms :: How To Create Unique URL Like Forums URL

Jan 7, 2011

How to create unique URL like our forums URL?

I have PO table with POID as unique.

I need to set unique URL for each PO like our each new Thread has unique URL forums.asp.net/12345.aspx

On the whole i need unique URL for each PO as our forums has unique URL for each new post. Like this format( forums.asp.net/12345.aspx)

View 9 Replies

Web Forms :: How To Develop The Forums Module In A Website

Dec 10, 2010

I need to develop the forums module in a website. Now i am able to post the forums but how to track the record like comments posted by the viewers.

View 1 Replies

How To Create .net Forums

Jul 6, 2010

I am creating a social website and i want to create asp.net forums. and i dont create forums so please give the solution of this problem....

View 8 Replies

How To Create Forums For Website

May 17, 2010

how to create forums for my website. I downloaded forum software from Jilbilt.com Its working fine but I need to integrate it with my website. Like if a user registers in my site he should be aoutomaticalluy registered with the forums
also.

View 1 Replies

.net Forums Rating System ?

Dec 3, 2010

i need to create a rating mechanism for a website just like the one in here (asp.net forums) but i don't know how it's working and it's a little confusing since i saw someone with 105 posts is rated 35 point while another person with 35 posts has the samerate

View 1 Replies

Pssobile To Pass Hosting In Asp Forums

Dec 15, 2010

've created asp site, and i would like to get free & nice forum to include .. where i can get that ?also, i would like to get the best offers for server ( best hosters ) which support asp

View 2 Replies

.net Project For Forums With Complete Source Code?

Mar 23, 2010

I Want asp .net project for forums with complete source code, its working like this forum...

View 2 Replies

C# - Post In EXTJS Forums ,To Know Abt Logging And Exception Handling Is Available?

Apr 9, 2010

I need to know, whether extjs 3.1 is available of exception handling and logging build in library .Like Logging the exception as log file , with the specification of error whether it is major or minor or critical or info.new log file creating on specified size exceeded. etc...

View 2 Replies

Open Forums For Trainers (professional IT Courses Fro Developers)?

Sep 23, 2010

asked in forums but I could not find any forum, newsgroup or discussion boards for "trainers" (teachers, coachers) and supporters (writers of courses, sysadmins of labs, et al) of professional courses for IT developers Might be the certified by major vendors trainers have the sites with forums but they are closed to non-certified "colleagues". Are there? I even do not know!I train as a hobby, sporadically, and I am not certified as trainer, at least by private entity. I daresay I spend on preparation to train more than I earn from training

View 1 Replies

C# - Creating A Software To Post And Manage Topics In A Lot Of Forums?

Sep 24, 2010

I want to create a software (desktop or web application) that have some bellow features:At beginning, I will add some forum (that I want to post topic to there) to software (to make it easier, at first the kind of forum is just vbulletin maybe)Posting topic to forum automatically (Type topic content and select forum to post)Manage all topic in all forum that we have post before.Posting reply to each reply.I think this software is very useful for those who want to post and manage a lot of topic in a lot of forum.
Do you think any soft like this one that was created already?How can I get start with this? At now, can I use C#, ASP.NET to implement this idea?

View 1 Replies

SQL Server :: Retrieving Data For A Forums Project In Posts Page?

Jan 18, 2011

I am designing a forums website. I have prepared two tables - topic and post

topic - topicid (pk),sub, message (content), replies (count of replies), catid(fk), createdby, createddate, updatedby, updatedon, viewers( count of views)

post - postid(pk), topicid(fk), post (content), createdby, createddate, updatedby, updatedon.

retrieving data from both tables in posts page where the 1st post is in the topic table and rest i.e. replies are in the post table.

View 8 Replies

MailMessage Sent To Any Adress From Windows Forms Application, But Not From Asp.net Application, After Both Are Using The Same SMTP-server?

Jan 27, 2010

I'm experiencing a to me mysterious error when sending e-mails through a SMTP-server from an ASP.NET web application. I get the famous error "unable to relay for xxx@yyy.zzz". What's mysterious to me is that when I cut and paste the exact same code that sends the e-mail into an usual .NET Windows Forms application, send the e-mail with this application, it all works just fine. This made me think that perhaps the problem is that the ASP.NET application runs as NETWORK SERVICE while the Windows Forms application runs on a domain user account, but it turns out that I have another ASP.NET application sending e-mail through the same SMTP-server running under NETWORK SERVER at the same IIS, and this application does not experience this problem.

I've further tried to send e-mails through the SMTP-server manually by telnet the smtp-server on port 25 and running the SMTP-protocol manually, and it all works fine. The SMTP-server is not configured with any kind of authentication or SSL.

Another mysterious fact is that the ASP.NET application can send e-mails from an adress within the same domain to an e-mail adress within the same domain, but not to any adress outside of the domain. But the Windows Forms application, that uses the exact same code, can send e-mails from any adress to any adress both within AND outside of the domain.

So to summarize:

The ASP.NET application can send
e-mails from addresses within the
domain to adresses within the domain,
but not to addresses outside of the
domain.
A Windows Forms application running
the same code on the same computer
can send e-mails from ANY address to
ANY address.
Another ASP.NET application on the
same IIS running under the same
account (NETWORK SERVICE) can send
e-mails using the same SMTP-server
from ANY adress to ANY adress.
There is no authentication configured
on the SMTP-Server.
Both the ASP.NET application and the
Windows Forms application utilizes
the System.Net.Mail.SmtpClient class
to send a
System.Net.Mail.MailMessage.

The code that sends the e-mail massage is:

private void button1_Click(object sender, EventArgs e)
{
MailMessage mesasge = new MailMessage(txtFrom.Text, txtTo.Text, "Test mail", txtBody.Text);
SmtpClient client = new SmtpClient();
if (!(string.IsNullOrEmpty(txtUserName.Text))) //Is false since txtUserName.Text is empty
client.Credentials = new System.Net.NetworkCredential(txtUserName.Text, txtPassword.Text);
client.EnableSsl = false;
client.Host = txtServer.Text;
client.Port = 25;
try
{
client.Send(mesasge);
}
catch (Exception ex)
{
txtResponse.Text = ex.Message;
}
}

As far as I can understand, this should be a matter of configuration rather than coding issues.

View 2 Replies

Web Forms :: Gmail Like Chat Application - Building An Instant Messenger Application For The Selected User

Feb 22, 2010

I have a requirement for building an instant messenger application for the selected user.

I have googled for the solution but without any sucess.My requirement is once a user initiates a chat with another user,the another user needs to get a popup of the chat window,where the two users can start chatting.

View 4 Replies

Web Forms :: : .NET Application Not Accessible And Access Denied For Some Application Files?

May 12, 2010

We have an ASP.NET 3.5 Web application in which we have faced the below issue:

The application is working fine but suddently at one point application URL prompts for the authentication. When we (the support team) checked the server, we were able to identify that the access was denied for some of the main files (like web.config, default page). When we enabled the access the application started working fine.

View 2 Replies

Web Forms :: How To Create And Destroy Application Object In Application

Jul 13, 2010

I have to implement broker and dealer socket connection like in share market i.e. it should connect at 9 AM and stop at 3.30 PM and repeat in next morning ...

so following is my requirement

1) i have to create application object once in day at 9 AM and destroyed at particular end day 3.30 PM.

My question is how to destroyed application object at given particular time ... i think this can be done in application_end handler in global.asax ... but my question is when no request is made at that time then what happened..

View 2 Replies

Get Application File Path In Windows Forms Application?

Nov 3, 2010

I have a simple windows form app that I need to get the file path for. I am placing a config file in the same directory and I need to be able to get the path to that file.

I have used
Application.CommonAppDataPath
but that returns the path with 1.0.0.0 at the end.

and
Applicaiton.StartupPath
but that returns the path with indebug at the end

Is there anyway to get the path to just the main file directory without anything appended to the end?

View 3 Replies

Web Forms :: Same Codes From Windows Application But Can't Compile The Same Way In Web Application

Jan 25, 2011

why is it that the exact same codes that i use to create a Windows application, which is able to work, does not work on a Web application? i created a windows application using c# and socket programming language. i will be connected to a remote server and through the windows application, and i will be able to send the "byte[] msg" to the server and activate the LED lightbulbs attached to the remote server. that exact same codes works well on the Windows application. however, when i create another Web application using the same exact codes, i does not have any error yet i am not able to activate the LED lightbulbs attached to it. is it that through the web or internet explorer i am not able to send the "byte[] msg" correctly? or that i sld modify "byte[] msg" to suit the web usage? or any other reasons?

View 7 Replies

Web Forms :: Classes Of Web Application - Server Error In '/' Application?

Jul 21, 2010

i have classes of my web application only the default one work if i for example click a link to go to another class i get this error for each class this happens . But only on the web server WHy ?

Server Error in '/' Application.

Parser Error

Description:An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: Could not load type 'WebApplication2.Login2'.

Source Error:[Code]....

Line 1: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Login2.aspx.cs" Inherits="WebApplication2.Login2" %>Line 2: Line 3:
Source File: /Login2.aspx Line: 1

View 4 Replies

Web Forms :: Passing Values From One Application To Another Application?

Nov 22, 2010

I am using Multiple applications with single login. Login page also in seperate Application.

I want to send secured values from login page to another application based on logincredentials. Those values shouldnt visible to Any one.

View 3 Replies

Web Forms :: Integrate Windows Application Into Web Application?

May 19, 2012

is it possible to call or integrate the windows application into asp.net web application? is it yes then tell me how to do it.

View 1 Replies

Web Forms :: Get File Path Into Application Where File Is Located In Another Application?

Mar 30, 2010

i have two application suppose wwwroot/one and wwwroot/two.

there is one .aspx page on "one" application into which i want to get file(.xml) from application "two" and do some work on that file like save,edit,delete etc..

and than save that file into "two" application.

like

wwwroot/one/MyFile.aspx --> this is file into which i want to access aaa.xml file from application two/File where File is a folder. all file operation is here.

wwwroot/two/File/aaa.xml --> this is xml file which is reside in another application

View 2 Replies

Visual Studio :: How To Remove The Unused References In Form Level/vb.net Application And Web Application

Feb 3, 2010

How to remove the unused references in form level, vb.net application and web application?

How can I use fxcop to identity undisposed objects like dataset, dataview, connection, stream...? Any one having custom rules for the same?

View 1 Replies

Active Directory/LDAP :: Service Reposding Slow In One Application And Fast In Another Application

Jun 16, 2010

I have two applications(A,B) both are developed in .NET3.5 and used LDAP services.Application-A in one screen we are fetching users with role "project Leads" and it is taking 10 min time

Application-B in login screen we are checking user is authenticated or not and it is taking 20 sec

Both the applications are using the same service then way there is a time span problem. Please suggest me what can I do to improve performance of application A?

View 3 Replies







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