CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets for: Aaron
<span style="color:red">Hello</span> // makes font color red
<span style="font-family:Arial">Hello</span> // makes font type Arial
<span style="font-size:12px">Hello</span> //makes font size 12px
 
You can also use them in one place :
 
<span style="color:red;font-family:Arial;font-size:12px">Hello</span>
by Aaron   January 24, 2010 @ 3:11pm
Tags: html
166 Views
no comments
 
// tr => row and td => column
 
<table>
    <tr>
         <td><a href= "http://caknife.com"/>Hello</a></td>
         <td></td>
     <tr>
</table>
by Aaron   January 07, 2010 @ 9:39am
Tags: html
165 Views
no comments
 
C#
 public static void WriteJSONObject(this HttpResponse response, object content) {
            response.ContentType = "application/json";
            response.Write(new JavaScriptSerializer().Serialize(content));
            response.End();
 
 }
 
public void RegisterUser() {
    try {
        Response.WriteJSONObject(new { Result = "See hello" });
by Aaron   December 24, 2009 @ 10:30pm
Tags:
105 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate