Tuesday, June 12, 2007
The stuning system got good grade
Saturday, March 31, 2007
Finish the Post section: remove the unwanted item like the yekwords and clippings
Implement the cookies by the HttpCookie class and retrive cookie by Request.Cookies method
The final progress log has been submitted and now writing the final report and fine turn the functions that could help improve the system.
references: Teaching how to write cookie by ASP.NET http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/apps/cookies1/cookies1.src
powered by performancing firefox
Several Screen shot on my system
Add bookmarklet by dragging
Successful insert into PostLink
Newly added Archive with comments
Retrieve password by email
Edit/Delete the archives
Front page of PostLink
View buddy's archives and tags
Tag retrieve based on Tag bag structure
Compare the result with Tag association mining and ordinary content based searching
Tag searching and ordinary content-based searching
Editing
Friday, March 30, 2007
PostLink on my phone
Well, after completing the RSS implementation on my system late last night, I through I can read it on Google Reader, on the Yahoo!Widget, ordinary RSS reader etc but what's more?
When I was having my lunch, I want to phone someone. Suddenly I surpised: why can't I submit the RSS in my phone? So, after collecting my lunch in canteen, I keyed my RSS feed into my phone. I was touching when it connected and finished updating! Here are the screen shot from my DC.
Once again, thanks Manfred and Jacky as well who teach me about email sending in ASP.NET in just 30 minutes!
Thursday, March 29, 2007
Finish Delete, Edit and RSS feed functions
The edit items function have been finished. by resolving the IsPostBack problem, the TextBox.Text can return the user's modified text/value back to the server for modification and/or update the bookmark.
On the other hand, the delete function has been implemented and user now can delete his own bookmark without affecting other's share on the same bookmark.
May I like to take the opportunities to thanks my friend, Manfred who helps me to overcome the problem on implementing and debug on the RSS.NET enhancement on my project. With the RSS support, user can submit the RSS 2.0 standard feeds and read the contents with their RSS feed reader. Once and again, thank you Manfred!
powered by performancing firefox
Tuesday, March 27, 2007
Sunday, March 25, 2007
Ajax.NET - A free library for the Microsoft .NET Framework
http://ajax.schwarz-interactive.de/csharpsample/default.aspx
Send feedback form with Unicode chars
[Ajax.AjaxMethod]
public string Test1(string firstName, string familyName, string email, string comment)
{
string html = "";
html += "Hello " + firstName + " " + familyName + " /> html += "Thank you for your comment /> html += System.Web.HttpUtility.HtmlEncode(comment);
html += " />
return html;
}
powered by performancing firefox
Friday, March 23, 2007
Count linkid
powered by performancing firefox
Date and time manipulation in SQL
---------------- Selecting only the date part from a datetime column --------------
/* Creating a Test Table */
Create Table MyDateTest99
(
datetime
)
go
/* Inserting the test value into the table */
insert into MyDateTest99 values (getdate())
go
/* Selecting the result */
select convert(varchar,DateColumn,108) from MyDateTest99
go
/* Performing Cleanup */
drop table MyDateTest99
go
powered by performancing firefox