|
|
-
|
|
HTML 5 introduced "details" tag, which can be used to show/hide the details. For now, it has been implemented only
in Google Chrome browser. By default the content inside will not be visible. On clicking the arrow, entire content
will be visible. On c...
|
|
-
|
|
In Internet Explorer 9, Tab isolation has been introduced, Each tab will run in its own process. So, when a tab crashes, other tabs still work without any problem....
|
|
-
|
|
You can access websites that you visit regularly by pinning them to the taskbar on your Windows 7 desktop.
Pinning a site is simple. just drag its tab to the taskbar—the website's icon will stay there until you remove it. When you click the icon later,...
|
|
-
|
|
Now in Dynamics CRM 2011, we have enhanced features to work through WCF Service interface. This means without having all Entity details in hand, we can work with the existing entities through strings.
The service references are:
[http://server:20385/X...
|
|
-
|
|
Visual Studio 2011 highlight the current line, which makes easy to recognize the tiny carot symbol.
You can enable/disable it in Tools -> Options -> Text Editor
...
|
|
-
|
|
Access code browsing features directly from Solution Explorer without opening files. You can browse the types and members in your projects, search for symbols, view a method’s Call Hierarchy, find symbol references, and more, without having to switch be...
|
|
-
|
|
In previous versions, if we select a row in gridview in page 1, when we move to page 2 and come back to page 1, previously selected row will be unselected. I saw many questions in forums to persist this selection. We used to write lot of custom code. No...
|
|
-
|
|
In Earlier versions of .NET, String class has IsNullOrEmpty() method, which can be used to check whether the string is null or empty. To check for white spaces, we need to write additional code.
Now .NET 4.0 introduced a new method, IsNullOrWhiteSpace(...
|
|
-
|
|
Its common that, aspx page names will change some times. Then, old links will become stale and search engines will point to these stale pages, . Although we handle this by redirecting to new pages, still it will throw an temporary redirect response(HTTP...
|
|
-
|
|
When the below controls are rendered, automatically these will be wrapped up inside a table.
1. FormView
2. Login
3. ChangePassword
4. PasswordRecovery
5. Wizard
6. CreateUserWizard
If you don't want these control to be rendered inside a table, set th...
|
|