Programmer Visual Studio(Visual Web Developer Express) settings

Please left click on “Tools (menu item)” in “Start Page – Microsoft Visual Web Developer 2010 Express”
clip_image001[13]
Please left click on “Options… (menu item)”
clip_image002[12]
Please left click on “Show all settings (check box)” in “Options”
clip_image003[11]
Please left click on “Projects and Solutions (outline item)” in “Options”
clip_image004[11]
Please left click on “General (outline item)” in “Options”
clip_image005[11]
Please left click on “Track Active Item in Solution Explorer (check box)” in “Options”
clip_image006[11]
Please left click on “Always show solution (check box)” in “Options”
clip_image007[11]
Please mouse drag start on “Position (indicator)” in “Options”
clip_image008[11]
Please mouse drag end on “Position (indicator)” in “Options”
clip_image009[11]
Please left click on “Text Editor (outline item)” in “Options”
clip_image010[11]
Please left click on “HTML (outline item)” in “Options”
clip_image011[11]
Please left click on “HTML (outline item)” in “Options”
clip_image012[11]
Please left click on “Tabs (outline item)” in “Options”
clip_image013[11]
Please left click on “Formatting (outline item)” in “Options”
clip_image014[11]
Please left click on “Insert attribute value quotes when typing (check box)” in “Options”
clip_image015[11]
Please mouse drag start on “Position (indicator)” in “Options”
clip_image016[11]
Please mouse drag end in “Options”
clip_image017[11]
Please left click on “OK (push button)” in “Options”
clip_image018[11]

Programmer settings – Add shortcuts to “send to”

In this tip I will show how to add a “send to” notepad menu item(you can add for another programs too)

Please keyboard input [… Win-R]
clip_image001[6]
Please keyboard input in “Run” [Enter]
clip_image002[6]
Please right click on “Items View (list)” in “C:\Users\andrei ignat\AppData\Roaming\Microsoft\Windows\SendTo”
clip_image003[6]
Please left click on “New (menu item)”
clip_image004[6]
Please left click on “Shortcut (menu item)”
clip_image005[6]
Please keyboard input in “Create Shortcut” […]
clip_image006[6]
Please left click on ” (push button)” in “Create Shortcut”
clip_image007[6]
Please keyboard input in “Create Shortcut” […]
clip_image008[6]
Please left click on “Finish (push button)” in “Create Shortcut”
clip_image009[6]

Backup application for Windows Azure

I have written( with Vunvulea Radu and Catalin Gheorghiu)  a backup application for Azure. It is made with MVC + Azure Tables.

It was made initially for a contest, but I intend to work further and progress .

You can play at http://backupapp.cloudapp.net/

The code source is on http://myazurebackup.codeplex.com/ – and you can add also your feedback at http://myazurebackup.codeplex.com/workitem/list/advanced

And , if you are a programmer, you can also improve it – just leave a comment on codeplex!

Thank you,

Programmer Settings – Winmerge

Please click Edit-Options

clip_image001

 

Please left click on "General (outline item)" in "Options (Shell Integration)"

clip_image002

 

Please left click on "Automatically scroll to first difference (check box)" in "Options (General)"

clip_image004

 

Please left click on "Disable Splash Screen (check box)" in "Options (General)"

clip_image005

 

Please left click on "Compare (outline item)" in "Options (General)"

clip_image006

 

Please left click on "Ignore blank lines (check box)" in "Options (Compare)"

clip_image007

 

Please left click on "Ignore case (check box)" in "Options (Compare)"

clip_image008

 

Please left click on "Ignore time differences less than 3 seconds (check box)" in "Options (Compare)"

clip_image009

 

Please left click on "Editor (outline item)" in "Options (Compare)"

clip_image010

 

Please left click on "Archive Support (outline item)" in "Options (Editor)"

clip_image011

 

Please left click on "Shell Integration (outline item)" in "Options (Archive Support)"

clip_image012

 

Please left click on "Add to context menu (check box)" in "Options (Shell Integration)"

clip_image013

 

Please left click on "Include subfolders by default (check box)" in "Options (Shell Integration)"

clip_image014

 

Please left click on "Add Shell menu to context menu (check box)" in "Options (Shell Integration)"

clip_image015

 

Please left click on "Enable advanced menu (check box)" in "Options (Shell Integration)"

clip_image016

 

Please left click on "OK (push button)" in "Options (Shell Integration)"

clip_image017

 

Jquery and multiple Ajax

I have had 2 occasions where I need to know when the ajax call have been finished:
  1. When in the beginning of page I have to load specific items that the user have been seen last time
  2. When the page was full with ajax call  – and there was also a “submit” button that should send the information (saved already ) that the user have finished entering the fields .
So – jquery have 2 methods: ajaxStart and ajaxStop.
Code:
Put 2 divs on the page :
<div id=”divWait” style=”display:none”> Please wait…</div>
<div id=”divOK” style=”display:none”> All data submitted</div>
And put this on javascript:
$(“#divWait”).ajaxStart(function() {
$(“#divWait”).show();
$(“#divOK”).hide();
});
 $(“#divWait”).ajaxStop(function() {
$(“#divWait”).hide();
$(“#divOK”).show();
});

Javascript hell

In 1997-200x days, when I have been programming in VB3-6 , there was a problem named ”DLL Hell”.

I have been hoping that, with the introduction of .NET, we will escaping this – and I have had my request answered( ok, from .NET 2 )

However, a new problem is for WebDevelopers : JavaScript Hell. Why I am telling that ? Simple :

  1. I have an application that works well in IE 8Star – and uses Json.Stringify to post data. Normally, when I was trying with IE7, it does not work – because JSON.Stringify was not allowed …Of course , solution was adding javascript from http://www.json.org/js.html .
  2. Same application use jquery 1.4 + http://knockoutjs.com/ 1.1.2 (to can modify dynamically some textboxes) + other js( a date time formatter,jquery ui and others)- . Now , in IE9 RC , jquery1.4 does  not function – and you have to use jquery1.5.1.rc also.Please tell me how to know what modifications the other js files must have( in particular knockout) .

And the mock idea is not solving the issue. You must test either manually , either with an automated test for browser(like Selenium) and testing explicitely in browser version! And I have  speak only about IE, not Firefox and /or Chrome…

If you are a developer, how many javascript do you use? If more than 2 ,welcome to javascript hell!

Star : Please read the requirements from http://msdn.microsoft.com/en-us/library/cc836459%28v=vs.85%29.aspx :

Note:

Starting with JScript 5.8, by default, the JScript scripting engine supports the language feature set as it existed in version 5.7. This is to maintain compatibility with the earlier versions of the engine. To use the complete language feature set of version 5.8, the Windows Script interface host has to invoke IActiveScriptProperty::SetProperty.

Internet Explorer 8 opts into the JScript 5.8 language features when the document mode for Internet Explorer 8 is “Internet Explorer 8 Standards” mode. For other document modes, Internet Explorer uses the version 5.7 feature set.

JScript 5.8 includes native JavaScript Object Notation (JSON) support and the accessor methods for Document Object Model (DOM) prototypes.

Asp.NET MVC, Jquery and Razor – Cascading dropdown, retrieving partial views, Json send objects, handling errors

There are many blogs and other posts on using jQuery with MVC. You can find individual posts on:

·         How to send objects to an action method via JavaScript.

·         How to retrieve partial views.

·         How to handle errors.

asp.net mvc jquery razor cascading demo

I have written a sample showing how to do all of these together. The sample is written in  MVC 3 using Razor views

The sample demonstrates:

  1. Cascading dropdown ( see the button Populate from action and Cascading drop down)
  2. Populating a table from a Partial View(see the button Add New Employee(jquery call action and render)
  3. How to handle  error from action ( press Save 2 )
  4. How to send id parameters (long) from javascript to action ( press Delete 1 or Delete 2)
  5. How to send objects(Employee) from javascript to action ( press Save 1 or Save 2)

Without further ado, this is the project . Enjoy!

Jquery MVC Razor demo full

PS: If you seems that the code is too hard, here is a more detailed explanation :http://msprogrammer.serviciipeweb.ro/2011/12/05/jquery-ajax-request-and-mvcdetailed/

Andrei Ignat weekly software news(mostly .NET)

* indicates required

Please select all the ways you would like to hear from me:

You can unsubscribe at any time by clicking the link in the footer of our emails. For information about our privacy practices, please visit our website.

We use Mailchimp as our marketing platform. By clicking below to subscribe, you acknowledge that your information will be transferred to Mailchimp for processing. Learn more about Mailchimp's privacy practices here.