This is the updated version of the Nikhil’s excellent example on how to use Ajax with ASP.net MVC.
I commented all the changes made in the code and prefixed them with //emad. So just search for //emad and you will see all the changes I made… Here is a quick list of the changes [...]
Entries Categorized as 'Programming'
Ajax with ASP.NET MVC Framework Preview 2
March 31, 2008
Set a Clip in Code-Behind
March 17, 2008
You can use the Clip property on any item to clip its display area. For example if you have this two items rectBlue and rectRed like this
And you want to animate rectRed by sliding it out from the right side, without clipping it would look like this
But if you set the Clip property on [...]
Silverlight: TemplateBinding Throwing an Error
March 14, 2008
This drove me crazy for about half an hour…
I attached this style to a button
<Style x:Key=”NavButtonStyle” TargetType=”Button”>
<Setter Property=”Opacity” Value=”0.8″></Setter>
<Setter Property=”Template”>
<Setter.Value>
<ControlTemplate>
[...]
Get Enum Value from String
February 20, 2008
Here is a quick tip. If you have the following Enum
Enum Frequencies
DAILY
WEEKLY
MONTHLY
End Enum
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, “Courier New”, courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { [...]
Get Tasks in Outlook 2007 with VB.NET
January 6, 2008
You can retrieve the list of tasks in your Outlook 2007 using the following code
Dim ns As Outlook.NameSpaceDim tasks As Outlook.Itemsns = Application.GetNamespace(”MAPI”)tasks = ns.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderTasks).Items
Dim task As ObjectFor Each task In tasks ‘ iterate through the tasks hereNext
Related PostsSynchronize Outlook Tasks with Remember the MilkOutlook 2007 is by far the best integrated solution for organizing [...]
Posted in

content rss
