A WCF framework that supports the Request and Response scenario with base classes and all other great stuff....
Hello World With Agatha:
'via Blog this'
Popular Posts
-
Kendo UI applying SUM in footer template kendo ui - KendoUI: Grid Summary values in Footer - Stack Overflow : ", footerTemplate:...
-
MVC grid example ASP.NET MVC Flexigrid sample - CodeProject : 'via Blog this'
-
A possible way of handling distributed transaction for multiple contexts without alleviation to MSDTC??? c# - Entity Framework - Using Trans...
Friday, August 31, 2012
Thursday, August 30, 2012
Tuesday, August 28, 2012
Model Binding To A List
Submitting multiple (multiline) to controller from view - MVC
here is the trick ->
Model Binding To A List: "Non-Sequential Indices"
'via Blog this'
here is the trick ->
Model Binding To A List: "Non-Sequential Indices"
'via Blog this'
Saturday, August 25, 2012
Code Voyeur - ASP.NET MVC HtmlHelper Extensions for jQuery AutoComplete
Autocomplete Extension method!
Cooool
Code Voyeur - ASP.NET MVC HtmlHelper Extensions for jQuery AutoComplete:
'via Blog this'
Cooool
Code Voyeur - ASP.NET MVC HtmlHelper Extensions for jQuery AutoComplete:
'via Blog this'
Editable Grid / List Binding in MVC2 - DONN FELKER
posting a collection eg customer -> Orders -> Order lines
Editable Grid / List Binding in MVC2 - DONN FELKER:
'via Blog this'
Editable Grid / List Binding in MVC2 - DONN FELKER:
'via Blog this'
Friday, August 24, 2012
Working with folders by using the EWS Managed API
Creating, updating and deleting folders in an exchange mailbox
Working with folders by using the EWS Managed API:
'via Blog this'
Working with folders by using the EWS Managed API:
'via Blog this'
Working with calendar items by using the EWS Managed API
Exchange = manipulating the calendar items including attendees and requests
Working with calendar items by using the EWS Managed API:
'via Blog this'
Working with calendar items by using the EWS Managed API:
'via Blog this'
ExchangeService object
Use currently logged in user credentials to connect to EWS
ExchangeService object: "UseDefaultCredentials "
'via Blog this'
ExchangeService object: "UseDefaultCredentials "
'via Blog this'
Saturday, August 18, 2012
Friday, August 17, 2012
ASP.NET MVC – Multiple buttons in the same form - David Findley's Blog
Multiple different ways of having more than one button on the form.
1- controller will select case based on the name of the button
2- multiple forms in the paage
3- java script to handle it click
ASP.NET MVC – Multiple buttons in the same form - David Findley's Blog:
'via Blog this'
1- controller will select case based on the name of the button
2- multiple forms in the paage
3- java script to handle it click
ASP.NET MVC – Multiple buttons in the same form - David Findley's Blog:
'via Blog this'
Create a Custom Membership Provider : Official Microsoft Site
Creating custom membership - authorisation provider in asp.net --> MVC
Create a Custom Membership Provider : Official Microsoft Site:
'via Blog this'
Create a Custom Membership Provider : Official Microsoft Site:
'via Blog this'
Wednesday, August 15, 2012
Code Voyeur - ASP.NET MVC HtmlHelper Extensions for jQuery AutoComplete
creating extention method for JQuery auto-complete
Code Voyeur - ASP.NET MVC HtmlHelper Extensions for jQuery AutoComplete:
'via Blog this'
Code Voyeur - ASP.NET MVC HtmlHelper Extensions for jQuery AutoComplete:
'via Blog this'
Tuesday, August 7, 2012
Get The Drop On ASP.NET MVC DropDownLists
MVC drop down
Get The Drop On ASP.NET MVC DropDownLists: "IEnumerable items = db.Categories
.Select(c => new SelectListItem
{
Value = c.CategoryID.ToString(),
Text = c.CategoryName
});
ViewBag.CategoryID = items;"
'via Blog this'
Get The Drop On ASP.NET MVC DropDownLists: "IEnumerable items = db.Categories
.Select(c => new SelectListItem
{
Value = c.CategoryID.ToString(),
Text = c.CategoryName
});
ViewBag.CategoryID = items;"
'via Blog this'
ASP.NET MVC , ORM and ViewModels « A Programmer with Microsoft tools
MVC deal with dropdown in CRUD scenarios ....
ASP.NET MVC , ORM and ViewModels « A Programmer with Microsoft tools:
'via Blog this'
ASP.NET MVC , ORM and ViewModels « A Programmer with Microsoft tools:
'via Blog this'
Sunday, August 5, 2012
.NET Web Site with SQL Database - Windows azure
Create free windows azure account and deploy upto 10 websites.
.NET Web Site with SQL Database:
'via Blog this'
.NET Web Site with SQL Database:
'via Blog this'
Saturday, August 4, 2012
Customising the HandleError action filter MVC3
Customising the HandleError action filter.....
Get to Know Action Filters in ASP.NET MVC 3 Using HandleError - .net DEvHammer - Site Home - MSDN Blogs:
'via Blog this'
Get to Know Action Filters in ASP.NET MVC 3 Using HandleError - .net DEvHammer - Site Home - MSDN Blogs:
'via Blog this'
visual studio 2010 - snippet for an auto-property in VB.NET
code snippet for auto property for vb.net
visual studio 2010 - Is there a snippet for an auto-property in VB.NET? - Stack Overflow: "C:\Users\\Documents\Visual Studio 2010\Code Snippets\Visual Basic\My Code Snippets\DefaultProperty.snippet"
'via Blog this'
visual studio 2010 - Is there a snippet for an auto-property in VB.NET? - Stack Overflow: "C:\Users\\Documents\Visual Studio 2010\Code Snippets\Visual Basic\My Code Snippets\DefaultProperty.snippet"
'via Blog this'
Friday, August 3, 2012
Showing datepicker using Jquery UI
This is how to show a date picker in in MVC view using Jquery UI:
ASP.NET MVC 3: Integrating with the jQuery UI date picker and adding a jQuery validate date range validator - Stuart Leeks - Site Home - MSDN Blogs:
'via Blog this'
ASP.NET MVC 3: Integrating with the jQuery UI date picker and adding a jQuery validate date range validator - Stuart Leeks - Site Home - MSDN Blogs:
'via Blog this'
Showing datepicker using Jquery UI
This is how to show a date picker in in MVC view using Jquery UI:
ASP.NET MVC 3: Integrating with the jQuery UI date picker and adding a jQuery validate date range validator - Stuart Leeks - Site Home - MSDN Blogs:
'via Blog this'
ASP.NET MVC 3: Integrating with the jQuery UI date picker and adding a jQuery validate date range validator - Stuart Leeks - Site Home - MSDN Blogs:
'via Blog this'
Wednesday, August 1, 2012
Supporting multiple submit buttons on an ASP.NET MVC view
Multiple Submit buttons within the same MVC page ...
Great one ...
Supporting multiple submit buttons on an ASP.NET MVC view:
'via Blog this'
Great one ...
Supporting multiple submit buttons on an ASP.NET MVC view:
'via Blog this'
Session variables in ASP.NET MVC - Stack Overflow
Singleton session wrapper around Session Object .... Nice but possibly not thread safe?
[Serializable]
public sealed class SessionSingleton
{
#region Singleton
private const string SESSION_SINGLETON_NAME = "Singleton_502E69E5-668B-E011-951F-00155DF26207";
private SessionSingleton()
{
}
public static SessionSingleton Current
{
get
{
if ( HttpContext.Current.Session[SESSION_SINGLETON_NAME] == null )
{
HttpContext.Current.Session[SESSION_SINGLETON_NAME] = new SessionSingleton();
}
return HttpContext.Current.Session[SESSION_SINGLETON_NAME] as SessionSingleton;
}
}
#endregion
public string SessionVariable { get; set; }
public string SessionVariable2 { get; set; }
// ...
}
Session variables in ASP.NET MVC - Stack Overflow:
'via Blog this'
Session variables in ASP.NET MVC - Stack Overflow:
'via Blog this'
Subscribe to:
Posts (Atom)