MVC 2 Twitter 应用程序
这是我第一次来这里,所以如果这个问题与这里无关,我提前道歉。我刚刚开始学习 C# 和 MVC 2。到目前为止,我的大部分学习都是通过示例进行的,我想从一个可以学到很多东西的示例中学习。
所以我的例子是我想为 twitter 创建一个 C# Web 应用程序。这意味着 Web 应用程序具有一个文本框和一个使用 MVC 2 和实体框架的提交按钮,当通过文本框提交任何内容时,该内容将发布到 Twitter 帐户。内容和 Twitter ID 会记录到数据库中,并且表单会再次显示,其中包含页面上的最新内容。
非常感谢任何能够在这方面帮助/指导我并真正感谢他们的帮助的人。
德里克
This is my first time here so I apologize in advance if this question is not relevant here. I have just started to learn C# and MVC 2. Most of my learning so far has been from examples and I wanted to learn from an example which I can learn a lot from.
So my example is I want to create a C# web-app for twitter. Meaning the web application that has a text box and a submit button using MVC 2 and entity framework and When any content is submitted via the text box, the content is posted to a Twitter account. The content and twitter id are logged to a database and the form is shown again with the most recent content on the page.
Much obliged to anyone who can help/guide me on this and truly appreciate the help.
Derek
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下载并按照教程进行操作:
http://mvcmusicstore.codeplex.com/Wikipage?ProjectName=mvcmusicstore
几乎您想要了解的有关 MVC 的所有内容都显示在那里。虽然它是 MVC3,但您不妨开始学习最新版本。
Download and follow the tutorial:
http://mvcmusicstore.codeplex.com/Wikipage?ProjectName=mvcmusicstore
Pretty much everything you want to learn about MVC is shown there. Granted it's MVC3 but you might as well start learning with the newest version.
LinqToTwitter 是我使用的一个库。我将它用于不同的目的,但它具有可帮助您构建所需内容的 API。如果您想探索更多内容,还有更多库可以帮助您构建 Twitter 客户端。
Sergio 的其他帖子已经向您指出了有关 MVC 的正确位置。
LinqToTwitter is one library that I used. I used it for a different purpose but it has the APIs that will help you build what you want. There are plenty more libraries which will help you building a twitter client if you wish to explore more.
Other post by Sergio has already pointed you to a right place regarding MVC.