<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4862487013574051276</id><updated>2012-02-16T06:45:56.927-08:00</updated><title type='text'>CSC-177 - ASP.NET</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>17</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-7475161977402428822</id><published>2009-12-16T08:04:00.000-08:00</published><updated>2009-12-16T08:06:22.495-08:00</updated><title type='text'>Testing your code.</title><content type='html'>Be sure that all Guids are being inserted properly.  Null's or Empty Guids will throw off everyone's code.&lt;br /&gt;&lt;br /&gt;Good Luck!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-7475161977402428822?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/7475161977402428822/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/12/testing-your-code.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/7475161977402428822'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/7475161977402428822'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/12/testing-your-code.html' title='Testing your code.'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-9020183782108242758</id><published>2009-12-15T12:14:00.001-08:00</published><updated>2009-12-15T12:14:40.428-08:00</updated><title type='text'>SQL Script</title><content type='html'>For creating the DotNetTwitter Database on your local SQL Server.&lt;br /&gt;&lt;br /&gt;if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Following]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)&lt;br /&gt;drop table [dbo].[Following]&lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Keywords]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)&lt;br /&gt;drop table [dbo].[Keywords]&lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Link]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)&lt;br /&gt;drop table [dbo].[Link]&lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Tweets]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)&lt;br /&gt;drop table [dbo].[Tweets]&lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Users]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)&lt;br /&gt;drop table [dbo].[Users]&lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;CREATE TABLE [dbo].[Following] (&lt;br /&gt;[FollowingID] [uniqueidentifier] NOT NULL ,&lt;br /&gt;[UserID] [uniqueidentifier] NULL ,&lt;br /&gt;[FollowingUserID] [uniqueidentifier] NULL &lt;br /&gt;) ON [PRIMARY]&lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;CREATE TABLE [dbo].[Keywords] (&lt;br /&gt;[KeywordID] [uniqueidentifier] NOT NULL ,&lt;br /&gt;[Keyword] [char] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NULL &lt;br /&gt;) ON [PRIMARY]&lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;CREATE TABLE [dbo].[Link] (&lt;br /&gt;[LinkID] [uniqueidentifier] NOT NULL ,&lt;br /&gt;[KeywordID] [uniqueidentifier] NULL ,&lt;br /&gt;[TweetID] [uniqueidentifier] NULL &lt;br /&gt;) ON [PRIMARY]&lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;CREATE TABLE [dbo].[Tweets] (&lt;br /&gt;[TweetID] [uniqueidentifier] NOT NULL ,&lt;br /&gt;[Tweet] [char] (250) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,&lt;br /&gt;[DateStamp] [datetime] NULL ,&lt;br /&gt;[UserID] [uniqueidentifier] NULL &lt;br /&gt;) ON [PRIMARY]&lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;CREATE TABLE [dbo].[Users] (&lt;br /&gt;[UserID] [uniqueidentifier] NOT NULL ,&lt;br /&gt;[UserName] [char] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,&lt;br /&gt;[UserImage] [char] (110) COLLATE SQL_Latin1_General_CP1_CI_AS NULL &lt;br /&gt;) ON [PRIMARY]&lt;br /&gt;GO&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-9020183782108242758?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/9020183782108242758/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/12/sql-script.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/9020183782108242758'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/9020183782108242758'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/12/sql-script.html' title='SQL Script'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-3158457815954224475</id><published>2009-12-14T07:53:00.000-08:00</published><updated>2009-12-14T08:53:10.569-08:00</updated><title type='text'>About the Final: Oops.</title><content type='html'>Alright, I set the time wrong, the Final goes live at Noon today(12/14/2009)&lt;br /&gt;You are more than welcome to use your notes or any other resource, but you only have 45 minutes to take the final, so use your time wisely.&lt;br /&gt;&lt;br /&gt;The Final is available under "Lessons"&lt;br /&gt;You have until 12/19/2009, 11:59pm to take the final.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-3158457815954224475?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/3158457815954224475/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/12/about-final-oops.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/3158457815954224475'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/3158457815954224475'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/12/about-final-oops.html' title='About the Final: Oops.'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-825999243624171714</id><published>2009-12-14T07:25:00.000-08:00</published><updated>2009-12-14T07:33:39.388-08:00</updated><title type='text'>Twitter Application.</title><content type='html'>Deadline: 12/19/2009, 11:59pm&lt;br /&gt;Points: 100&lt;br /&gt;&lt;br /&gt;Minimum Requirements:&lt;br /&gt;Users need to be able to login or register if their login account/username does not exist.&lt;br /&gt;Users will be able to post tweets and mark keywords&lt;br /&gt;Users will be able to view all Tweets from all Users&lt;br /&gt;Users will be able to edit their Tweets&lt;br /&gt;Display a list(checkbox list, listbox, datalist, or repeater) of all keywords&lt;br /&gt;Selecting keywords will display related Tweets&lt;br /&gt;&lt;br /&gt;Extra Credit:&lt;br /&gt;Display top 10 keywords  (+10pts)&lt;br /&gt;Ability to select multiple keywords to narrow your search (+10pts)&lt;br /&gt;Implement ability to Follow Users:&lt;br /&gt;Display a list of users you are following, selecting the user will display their Tweets (+10pts)&lt;br /&gt;When displaying all users' tweets, display an icon or label showing that you are following them(+10pts)&lt;br /&gt;When displaying all users' tweets, have a button allowing the user to follow that user, if you are already following that user, display the "following" icon from above(+10pts)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-825999243624171714?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/825999243624171714/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/12/twitter-application.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/825999243624171714'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/825999243624171714'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/12/twitter-application.html' title='Twitter Application.'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-3738696883979761158</id><published>2009-12-13T19:18:00.001-08:00</published><updated>2009-12-15T14:38:48.078-08:00</updated><title type='text'>Standard SQL Statements</title><content type='html'>"SELECT * FROM users"&lt;br /&gt;&lt;br /&gt;"SELECT * FROM users WHERE userid ='" +  _userid.ToString() + "'";&lt;br /&gt;&lt;br /&gt;"INSERT INTO User " +&lt;br /&gt;        "([UserID], [UserName], [UserImage]) " +&lt;br /&gt;        "VALUES ('"&lt;br /&gt;         + _UserID.ToString() + "','"&lt;br /&gt;         + _UserName + "','"&lt;br /&gt;         + _userImage + "')";&lt;br /&gt;&lt;br /&gt;"UPDATE User" +&lt;br /&gt;         "SET " +&lt;br /&gt;         " [UserName] = '" + _UserName.Trim() + "'," +&lt;br /&gt;         " [UserImage] = '" + _UserImage.Trim() + "'," +&lt;br /&gt;         + " WHERE UserID = '" + _UserID.ToString() + "'";&lt;br /&gt;&lt;br /&gt;"SELECT * FROM Tweets"&lt;br /&gt;&lt;br /&gt;"SELECT * FROM Tweets WHERE tweetid ='" +  _tweetid.ToString() + "'";&lt;br /&gt;&lt;br /&gt;"INSERT INTO Tweets " +&lt;br /&gt;        "([TweetID], [Tweet], [DateStamp], [UserID]) " +&lt;br /&gt;        "VALUES ('"&lt;br /&gt;         + _TweetID.ToString() + "','"&lt;br /&gt;         + _Tweet + "','"&lt;br /&gt;         + _DateStamp&lt;br /&gt;         + _UserID.ToString() + "')";&lt;br /&gt;&lt;br /&gt;"UPDATE Tweets" +&lt;br /&gt;         "SET " +&lt;br /&gt;         " [Tweet] = '" + _Tweet.Trim() + "'," +&lt;br /&gt;         " [DateStamp] = '" + _DateStamp.ToString() + "'," +&lt;br /&gt;         " [UserID] = '" + _UserID.ToString() + "'," +&lt;br /&gt;         + " WHERE TweetID = '" + _TweetID.ToString() + "'";&lt;br /&gt;&lt;br /&gt;"SELECT * FROM KeyWords"&lt;br /&gt;&lt;br /&gt;"SELECT * FROM KeyWords WHERE KeyWordid ='" +  _userid.ToString() + "'";&lt;br /&gt;&lt;br /&gt;"INSERT INTO KeyWords" +&lt;br /&gt;        " ([KeyWordID], [KeyWord]) " +&lt;br /&gt;        "VALUES ('"&lt;br /&gt;         + _KeyWordID.ToString() + "','"&lt;br /&gt;         + _KeyWord + "')";&lt;br /&gt;&lt;br /&gt;"UPDATE KeyWords" +&lt;br /&gt;         "SET " +&lt;br /&gt;         " [KeyWord] = '" + _KeyWord.Trim() + "'," +&lt;br /&gt;         + " WHERE KeyWordID = '" + _KeyWordID.ToString() + "'";&lt;br /&gt;&lt;br /&gt;"INSERT INTO Link" + &lt;br /&gt;        " ([LinkID], [KeyWordID], [TweetID]) " +&lt;br /&gt;        " VALUES ('"&lt;br /&gt; + _LinkID.ToString() + "','"&lt;br /&gt; + _KeyWordID.ToString() + "','"&lt;br /&gt;        + _UserID.ToString() + "')";&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-3738696883979761158?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/3738696883979761158/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/12/standard-sql-statements.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/3738696883979761158'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/3738696883979761158'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/12/standard-sql-statements.html' title='Standard SQL Statements'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-7707554352175907588</id><published>2009-12-13T13:24:00.000-08:00</published><updated>2009-12-13T13:27:27.623-08:00</updated><title type='text'>The Final.</title><content type='html'>Here's a preview of the final.  The final exam will be opened tonight at midnight.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. What is a DataTable a collection of?&lt;br /&gt;&lt;br /&gt;2. How do I check to see if a user is viewing a page for the first time?&lt;br /&gt;&lt;br /&gt;3. Which control is similar in funcationality and behavior to a ListBox?&lt;br /&gt;&lt;br /&gt;4. Name the main parts of an Object Class.&lt;br /&gt;&lt;br /&gt;5. I have a session variable called "MyData".  How would I cast "MyData" as a DataTable?&lt;br /&gt;&lt;br /&gt;6. What is the primary event for a Button object?&lt;br /&gt;&lt;br /&gt;7. I am getting the following error:&lt;br /&gt;System.NullReferenceException: Object reference not set to an instance of an object.&lt;br /&gt;Most likely, this is caused by:&lt;br /&gt;&lt;br /&gt;8. Imagine a student database table.  I need to add a method to my object class which would select all graduating seniors.  What type of method would I make this?&lt;br /&gt;&lt;br /&gt;9. I have a DataTable called 'dtClassSchedule' with three columns: "DepartmentCode", "ClassCode", "Section".&lt;br /&gt;&lt;br /&gt;I need to add a new row where:&lt;br /&gt;"DepartmentCode" = "CSC"&lt;br /&gt;"ClassCode" = "177"&lt;br /&gt;"Section" = "290"&lt;br /&gt;&lt;br /&gt;How would I hard code this?&lt;br /&gt;&lt;br /&gt;10. With our class projects in mind, what is the first event fired from a .aspx web page?&lt;br /&gt;&lt;br /&gt;11. Which control is similar in functionality and behavior to a DropDownList?&lt;br /&gt;&lt;br /&gt;12. What is a GUID used for?&lt;br /&gt;&lt;br /&gt;13. Which control(s) are a collection of ListItems?&lt;br /&gt;&lt;br /&gt;14. Suppose I have an Object Class called MyClass, and an Accessor called Value1.&lt;br /&gt;&lt;br /&gt;Would I be using a 'get' or 'set':&lt;br /&gt;this.TextBox1.Text = MyClass.Value1;&lt;br /&gt;&lt;br /&gt;15. Suppose I have an Object Class called MyClass, and an Accessor called Value1.&lt;br /&gt;&lt;br /&gt;Would I be using a 'get' or 'set':&lt;br /&gt;MyClass.Value1 = this.TextBox1.Text;&lt;br /&gt;&lt;br /&gt;16. Explain the post-back process.&lt;br /&gt;&lt;br /&gt;17. What command do we use to bind a column from a DataTable to a control embedded in a template column of a GridView?&lt;br /&gt;&lt;br /&gt;18. I am need of two constructors for my Object Class called MyClass.  One constructor takes an ID of type Guid and a FilePath of type string, the other takes only the ID.  What would my constructors be?&lt;br /&gt;&lt;br /&gt;19. Suppose we have a TextBox called 'MyTextBox'.&lt;br /&gt;It's text property is set to 'Hello World'.&lt;br /&gt;How would I parse the text into a string array?&lt;br /&gt;How would I loop through the array?&lt;br /&gt;&lt;br /&gt;20. Imagine a student database table.  I need a method in my object class which updates a student record with new information.  This method is an example of:&lt;br /&gt;&lt;br /&gt;21. What steps would I take to connect a .aspx page to a SQL Database.&lt;br /&gt;&lt;br /&gt;22. I have a music database table with the following columns:&lt;br /&gt;&lt;br /&gt;TrackID&lt;br /&gt;TrackName&lt;br /&gt;TrackLength&lt;br /&gt;ArtistID&lt;br /&gt;&lt;br /&gt;For the Object Class: list the Accessors,  Public Methods, and Static Methods.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-7707554352175907588?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/7707554352175907588/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/12/final.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/7707554352175907588'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/7707554352175907588'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/12/final.html' title='The Final.'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-8596557908833506045</id><published>2009-12-08T15:58:00.000-08:00</published><updated>2009-12-08T18:13:45.403-08:00</updated><title type='text'>Publishing site/connection string</title><content type='html'>site:&lt;br /&gt;http://hydra.csit.parkland.edu/(application-YourInitials)/&lt;br /&gt;&lt;br /&gt;i.e.&lt;br /&gt;&lt;br /&gt;http://hydra.csit.parkland.edu/DataTableSQL-Cdey/&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;connection string: (inside web.config)&lt;br /&gt;&lt;br /&gt;(appSettings)&lt;br /&gt;    (add key="ConnectionString"&lt;br /&gt;         value="packet size=4096;user id=student; password=fall2009;data source=hydra; integrated security=SSPI; persist security info=false; initial catalog=DotNetTwitter"/)&lt;br /&gt;(/appSettings)&lt;br /&gt;&lt;br /&gt;also make these changes to your web.config, if these lines already exist, change their values, else add them:&lt;br /&gt;      (customErrors mode="Off"/)&lt;br /&gt;&lt;br /&gt;      (compilation debug="true")&lt;br /&gt;&lt;br /&gt;NOTE: REPLACE Parenthesis w/ Greater Than/Less Than signs&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-8596557908833506045?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/8596557908833506045/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/12/publishing-siteconnection-string.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/8596557908833506045'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/8596557908833506045'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/12/publishing-siteconnection-string.html' title='Publishing site/connection string'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-953295906679353125</id><published>2009-12-08T14:16:00.000-08:00</published><updated>2009-12-08T14:18:17.743-08:00</updated><title type='text'>Useful queries.</title><content type='html'>Aside from the usual select/update/insert/select all&lt;br /&gt;these queries will help you "connect" -or- "relate" your data.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;this query will return a table of tweetid/tweet/datestamp/userid/username/userimage:&lt;br /&gt;&lt;br /&gt;SELECT     dbo.Tweets.TweetID, dbo.Tweets.Tweet, dbo.Tweets.DateStamp, dbo.Users.UserID, bo.Users.UserName, dbo.Users.UserImage&lt;br /&gt;FROM         dbo.Tweets INNER JOIN&lt;br /&gt;                      dbo.Users ON dbo.Tweets.UserID = dbo.Users.UserID&lt;br /&gt;&lt;br /&gt;Adding a "WHERE" Clause will allow you to select Tweets on a specific user, or just to get a specific tweet.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;this query will return a table of tweetID/tweet/datestamp/keywordid/keyword:&lt;br /&gt;&lt;br /&gt;SELECT     dbo.Tweets.Tweet, dbo.Tweets.DateStamp, dbo.Keywords.Keyword, dbo.Tweets.TweetID, dbo.Keywords.KeywordID&lt;br /&gt;FROM         dbo.Tweets INNER JOIN&lt;br /&gt;                      dbo.Link ON dbo.Tweets.TweetID = dbo.Link.TweetID INNER JOIN&lt;br /&gt;                      dbo.Keywords ON dbo.Link.KeywordID = dbo.Keywords.KeywordID&lt;br /&gt;&lt;br /&gt;adding a "WHERE" Clause will allow to to select Tweets on a given keyword or keywordID or select all the keywords a specific TweetID&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;this query will return a table of userid/username/userimages/user_1id/user_1name/user_1images&lt;br /&gt;&lt;br /&gt;SELECT     dbo.Users.UserID, dbo.Users.UserName, dbo.Users.UserImage, Users_1.UserID AS Expr1, Users_1.UserName AS Expr2, &lt;br /&gt;                      Users_1.UserImage AS Expr3&lt;br /&gt;FROM         dbo.Users INNER JOIN&lt;br /&gt;                      dbo.Following ON dbo.Users.UserID = dbo.Following.UserID INNER JOIN&lt;br /&gt;                      dbo.Users Users_1 ON dbo.Following.FollowingUserID = Users_1.UserID&lt;br /&gt;&lt;br /&gt;adding a "WHERE" clause, will give you a list of "users_1"s , which is the users a specific "userid" is following are "following"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-953295906679353125?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/953295906679353125/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/12/useful-queries.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/953295906679353125'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/953295906679353125'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/12/useful-queries.html' title='Useful queries.'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-71846312072844770</id><published>2009-12-02T08:03:00.000-08:00</published><updated>2009-12-02T08:05:22.271-08:00</updated><title type='text'>Update!</title><content type='html'>The CoolGuy app on Angel has been updated.  Go through the Web.Config file, look over the Classes, and look at the modification in the default code.  Email me if you have any issues.&lt;br /&gt;&lt;br /&gt;you can hit the app at:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://hydra.csit.parkland.edu/DataTablesSQLCdey"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-71846312072844770?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/71846312072844770/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/12/update.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/71846312072844770'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/71846312072844770'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/12/update.html' title='Update!'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-6744537507707629901</id><published>2009-12-01T17:43:00.000-08:00</published><updated>2009-12-01T17:44:01.971-08:00</updated><title type='text'>Getting our Tags/AdjDesc for a CoolGuy ID</title><content type='html'>sqlCmd.CommandText = "SELECT CoolGuy.LineID, Adj.AdjDesc " +&lt;br /&gt;                            "FROM CoolGuy INNER JOIN " +&lt;br /&gt;                            " Link ON CoolGuy.LineID = Link.LineID " +&lt;br /&gt;                            " INNER JOIN Adj ON Link.AdjID = Adj.AdjID " +&lt;br /&gt;                            " WHERE CoolGuy.LineID = '" + _LineID.ToString() + "'";&lt;br /&gt;      _SQLConnection.Open;&lt;br /&gt;      sda.Fill(_Tags);&lt;br /&gt;      _SQLConnection.Close;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-6744537507707629901?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/6744537507707629901/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/12/getting-our-tagsadjdesc-for-coolguy-id.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/6744537507707629901'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/6744537507707629901'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/12/getting-our-tagsadjdesc-for-coolguy-id.html' title='Getting our Tags/AdjDesc for a CoolGuy ID'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-8543061171518999004</id><published>2009-12-01T16:21:00.001-08:00</published><updated>2009-12-01T16:21:21.475-08:00</updated><title type='text'>Connection String to hydra</title><content type='html'>value="packetsize=4096;user id=student; password=fall2009;data source=hydra; integrated security=SSPI; persist security=false; initial catalog=CoolGuy"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-8543061171518999004?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/8543061171518999004/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/12/connection-string-to-hydra.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/8543061171518999004'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/8543061171518999004'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/12/connection-string-to-hydra.html' title='Connection String to hydra'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-8902925676623747768</id><published>2009-11-17T15:08:00.000-08:00</published><updated>2009-11-17T15:10:38.475-08:00</updated><title type='text'>Our Twitter Database Diagram</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_qQDfjePruAM/SwMtLR97BzI/AAAAAAAAElo/5v7UX2cXA_o/s1600/TwitterERDiag.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 204px;" src="http://2.bp.blogspot.com/_qQDfjePruAM/SwMtLR97BzI/AAAAAAAAElo/5v7UX2cXA_o/s320/TwitterERDiag.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5405213649599661874" /&gt;&lt;/a&gt;&lt;br /&gt;From here we can see you our tables in our .NET Twitter, plus how our tables are related.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-8902925676623747768?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/8902925676623747768/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/11/our-twitter-database-diagram.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/8902925676623747768'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/8902925676623747768'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/11/our-twitter-database-diagram.html' title='Our Twitter Database Diagram'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_qQDfjePruAM/SwMtLR97BzI/AAAAAAAAElo/5v7UX2cXA_o/s72-c/TwitterERDiag.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-4479978040020833932</id><published>2009-11-10T09:18:00.001-08:00</published><updated>2009-11-10T09:19:23.314-08:00</updated><title type='text'>Relational Databases/Objects</title><content type='html'>We have an object for our Tweets, we need to create an object for our Keywords and relate the Keyword Object to our Tweet object.&lt;br /&gt;&lt;br /&gt;Stay Tuned...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-4479978040020833932?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/4479978040020833932/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/11/relational-databasesobjects.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/4479978040020833932'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/4479978040020833932'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/11/relational-databasesobjects.html' title='Relational Databases/Objects'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-6196925673139226251</id><published>2009-10-27T18:06:00.000-07:00</published><updated>2009-10-27T18:08:54.751-07:00</updated><title type='text'>.NET Twit Grows</title><content type='html'>So our Twitter apps are growing...  update your apps so you are actually saving your data including the ability to update/edit your previous Tweets.&lt;br /&gt;&lt;br /&gt;Sample Code from Week 9 (or is it 10?) is posted to Angel.&lt;br /&gt;&lt;br /&gt;Update your interface by Monday, Nov 1.&lt;br /&gt;&lt;br /&gt;Next Week: Out Tweet Object!&lt;br /&gt;Charlie&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-6196925673139226251?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/6196925673139226251/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/10/net-twit-grows.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/6196925673139226251'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/6196925673139226251'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/10/net-twit-grows.html' title='.NET Twit Grows'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-8741078246580803767</id><published>2009-10-21T08:30:00.000-07:00</published><updated>2009-10-21T08:39:15.574-07:00</updated><title type='text'>Multiple Tweets</title><content type='html'>Now that we've played w/ DataTable and the Gridview control, its time to integrate this into our .NET Twit app.&lt;br /&gt;&lt;br /&gt;After you save your Tweet:&lt;br /&gt;&lt;br /&gt;1.  Add a DateTime Stamp to your Tweet&lt;br /&gt;2.  Create a DataTable which will hold your Tweet, your KeyWords, and the DateTime Stamp.&lt;br /&gt;3.  Bind the DataTable to a GridView&lt;br /&gt;&lt;br /&gt;This aspect of your .NET Twit will be due this Friday, Oct. 23rd.  If you have any questions, email me or post a comment here.&lt;br /&gt;&lt;br /&gt;- Charlie&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-8741078246580803767?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/8741078246580803767/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/10/multiple-tweets.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/8741078246580803767'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/8741078246580803767'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/10/multiple-tweets.html' title='Multiple Tweets'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-8361537308214707823</id><published>2009-10-13T13:14:00.000-07:00</published><updated>2009-10-13T13:25:10.368-07:00</updated><title type='text'>Midterm Assignment</title><content type='html'>I'm not big on written Midterms (you will have a written Final)&lt;br /&gt;&lt;br /&gt;Your Midterm project is to build the Keyword parser method for our .NET-Twitter application.&lt;br /&gt;&lt;br /&gt;Have the user enter text into a Multiline TextBox - any Keywords the user wishes to enter will need to preceeded by a '#' sign.  After the text has been entered the user will hit a submit Button which will do two things:&lt;br /&gt;&lt;br /&gt;1. the Textbox will disappear and a Label will display with the same text as that which was entered by the user.&lt;br /&gt;2. A CheckBoxList will display all the Keywords as Items.  If a word is selected in the CheckBoxList, highlight the Word in the Label (using html tags)&lt;br /&gt;&lt;br /&gt;Also provide a switch back to the Edit Mode (TextBox viewable, Label hidden) where the user can make any changes to the Text - be sure to update the CheckBoxList.  Words should only appear once in the CheckBoxList, but the user can Keyword the same word multiple times in the text.&lt;br /&gt;&lt;br /&gt;This assignment will be due on Friday, October 16th, by 11:59pm&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-8361537308214707823?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/8361537308214707823/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/10/midterm-assignment.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/8361537308214707823'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/8361537308214707823'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/10/midterm-assignment.html' title='Midterm Assignment'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4862487013574051276.post-6716503394735900795</id><published>2009-10-06T14:02:00.000-07:00</published><updated>2009-10-06T16:00:34.702-07:00</updated><title type='text'>Class Project.</title><content type='html'>Our class project will consist of designing a Twitter-Like application.  There will be 3 to 4 parts to this app.  Each part will be a independently graded project.  First part of our application will be the input.&lt;br /&gt;&lt;br /&gt;Design a text editor with the following features:&lt;br /&gt;1. A TextBox which can hold 250 characters&lt;br /&gt;2. The ability to preview the post&lt;br /&gt;3. The ability to edit a post&lt;br /&gt;4. Search and Replace - Create a DropDownList which will hold each word (only once) and TextBox to replace the selected word from the DropDownList with the text in the TextBox.&lt;br /&gt;5. Character Count&lt;br /&gt;6. Word Count&lt;br /&gt;&lt;br /&gt;The TextEditor will be due Friday, October 16th.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4862487013574051276-6716503394735900795?l=csc177.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://csc177.blogspot.com/feeds/6716503394735900795/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://csc177.blogspot.com/2009/10/class-project.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/6716503394735900795'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4862487013574051276/posts/default/6716503394735900795'/><link rel='alternate' type='text/html' href='http://csc177.blogspot.com/2009/10/class-project.html' title='Class Project.'/><author><name>Ubik10</name><uri>http://www.blogger.com/profile/01589610267149502881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_qQDfjePruAM/SgCaoDrnyiI/AAAAAAAAD2M/khsh5oJd-3Y/S220/Me11.png'/></author><thr:total>1</thr:total></entry></feed>
