Tuesday, October 4, 2011

Downloads

Tuesday, October 4, 2011 by The Opening Batsman · 0

Thursday, September 22, 2011

Travel Without Printout of E-Tickets

Travel Without Printout of E-Tickets - Travel with Electronic Tickets


Good News for all train passengers 


An Appeal to passengers



Carry your tickets in electronic mode on
-Laptop
-Mobile
-IpadEnvironment Friendly


Must carry a valid ID


Save Paper


We can almost save 3 lakh A4 size paper every day.


This is a great initiative by the Indian Railways to allow the passengers to not carry the e-ticket & simply take a screen-shot of the e-ticket & display it through laptops/palmtops/ Mobile phone which will be referred as Virtual Reservation Message (VRM).

As we all know about the Electronic Reservation Slip (ERS) - The printout in standard specified Performa containing reservation particulars, and instructions for use which can be used by the passenger along with the relevant authorizedIdentification, as travel authority for performing the journey.

 So from onwards if you are traveling by train, then ERS/VRM along with any one of the eight prescribed ID proofs in original and the indication of the passenger(s)' name(s) in the Reservation Chart will authorize the passenger to travel.


VRM combined with valid photo-id in original will be treated as an instrument on par with the ERS.
 
ERS/VRM along with one of the eight prescribed proofs of identity in original will also authorize the passenger to enter the platform on the day of journey and he/she will not be required to purchase platform ticket. ERS/VRM along with original id proof will be required to be produced on demand of Ticket Checking Staff on the platform.  


Hope this information will be helpful.


Reference - https://www.irctc.co.in



Thursday, September 22, 2011 by The Opening Batsman · 0

Monday, September 19, 2011

Fastest growing web startups in India

List of Fastest growing web startups in India

Fastest growing web startups in India

Monday, September 19, 2011 by The Opening Batsman · 0

What's New in .NET 4.5

by The Opening Batsman · 0

Thursday, September 15, 2011

Body onload function in content page in asp.net

Body onload function in content page in asp.net

While working on one of the application, I had a master page & on one of the content page's body onload, I had to run a JS function.

To do this first you need to add an ID & runat attribute to the master page's body control. Like this:

In master page:

--code <body id="body" runat="server"> </body>

Now in content page, in the page load event, add this code:

protected void Page_Load(object sender, EventArgs e)
{
HtmlGenericControl body = this.Master.FindControl("body") as HtmlGenericControl;
body.Attributes.Add("onLoad", "alert('Hello World');");
}

I hope this simple tip will be helpful...

Thursday, September 15, 2011 by The Opening Batsman · 0

Wednesday, September 14, 2011

Windows 8 Developer Preview

Windows 8 Developer Preview

After getting to know about .NET Framework 4.5 available for preview, now Windows 8 Developer is also up for preview.

Just saw a tweet from Maarten Balliauw - which said Tweeting from Windows 8, thats when i thought yes Windows 8 is up...

You can download Windows 8 Developer Preview (Build 8102 M3) later tonight at 8PM PST (11PM EST). This includes a 64-bit (x64) build with development tools to build apps and a 32bit (x86) or 64-bit (x64) build without development tools. The releases also include a suite of sample applications. The ISOs can be downloaded from from http://dev.windows.com


To know more about Windows 8 , I found this interesting link, so hop over it & explore Windows 8.

http://www.gadgetgyaan.com/2011/08/microsoft-windows-8-what-to-expect/

Wednesday, September 14, 2011 by The Opening Batsman · 0

.NET Framework 4.5 is here...Visual Studio 11...

Download .NET Framework 4.5, Visual Studio 11 and Visual Studio Team Foundation Server 11 Developer Previews

what the hack man...still working on .NET Framework 2.0 & 3.5, was thinking to do some demo developments in .NET Framework 4.0 & here we see .NET Framework 4.5 for preview.

I know a lot of people like me who are still working on .NET Framework 2.0 or .NET Framework 3.5. Guys we need to move on fast...as .NET Framework 4.5 is up for a preview.

So all those wanting to have a look at it..you can download from here - The link is - Download .NET Framework 4.5, Visual Studio 11 and Visual Studio Team Foundation Server 11 Developer Previews

by The Opening Batsman · 0

Tuesday, September 13, 2011

ALTER TABLE ADD MULTIPLE COLUMNS IN SQL - SQL TIPS

ALTER TABLE ADD MULTIPLE COLUMNS - SQL

How to add multiple columns in single alter statement in sql?


ALTER TABLE Employee
ADD
ContactNo varchar(50),
MobileNo varchar(50),
Email varchar(50),
ReEnterEmail varchar(50);

Hope this tip will be helpful...Feel free to comment...

Tuesday, September 13, 2011 by The Opening Batsman · 0

Thursday, September 8, 2011

Blogs/Websites to Follow - ASP.NET - Good ASP.NET Sites/Links

This is part of the new series I have started on my blog where I will list out some useful blogs or websites to follow for all ASP.NET people...Not in any order just randomly...
The names have been linked to their Twitter profile so anybody can follow them if they like.


// 1. Scott Gutherie - Corporate Vice President, .NET Developer Platform, Microsoft - http://weblogs.asp.net/scottgu/
2. Scott Hanselman - Principal Program Manager, Microsoft - http://www.hanselman.com/blog/
3. Scott Mitchell - Founder, 4GuysFromRolla.com - http://scottonwriting.net/sowBlog/
4. Steve C. Orr - Microsoft MVP in ASP.NET - http://steveorr.net/Default.aspx
5. Nikhil Kothari - Software Architect, .NET Developer Platform, Microsoft - http://www.nikhilk.net/
6. Joe Stagner - Senior Program Manage, Microsoft Corporation’s Developer Tools and Platform Group - http://misfitgeek.com
7. Rick Strahl - Founder, WestWind.com - http://www.west-wind.com/weblog/
8. Scott Allen - Founder and Principal Consultant with OdeToCode LLC - http://odetocode.com/blogs/scott/
9. Phil Haack - Principal Program Manager, Microsoft - http://haacked.com/
10. Jeff Atwood - StackOverflow - http://www.codinghorror.com/blog/
11. S. Somasegar, Senior Vice President, Microsoft Developer Division - http://blogs.msdn.com/b/somasegar/
12. Harish Ranganathan - Developer Evangelist, Microsoft India - http://geekswithblogs.net/ranganh/Default.aspx
13. Mike Brind - Microsoft MVP - http://www.mikesdotnetting.com/
14. Imar Spaanjaars - Microsoft MVP, Founder - http://imar.spaanjaars.com/
15. Maarten Balliauw - .NET Technical Consultant at RealDolmen - http://blog.maartenballiauw.be/
16. Kazi Manzur Rashid - ASP.NET MVP & Co-Founder, dotnetshoutout.com - http://weblogs.asp.net/rashid/
17. Elijah Manor - ASP.NET MVP, ASPInsiders - http://elijahmanor.com/webdevdotnet/

I will keep on adding new sites to this list.

If anyone of you like to share a site then feel free to post it as comment will add to the list.

Thursday, September 8, 2011 by The Opening Batsman · 0

Difference Between .Net framework 2.0,3.0 and 3.5

Difference Between .Net framework 2.0,3.0 and 3.5

NET framework 2.0:

It brings a lot of evolution in class of the framework and refactor control including the support of

Generics
Anonymous methods
Partial class
Nullable type
The new API gives a fine grain control on the behavior of the runtime with regards to multithreading, memory allocation, assembly loading and more
Full 64-bit support for both the x64 and the IA64 hardware platforms
New personalization features for ASP.NET, such as support for themes, skins and webparts.
.NET Micro Framework

.NET framework 3.0:

Also called WinFX,includes a new set of managed code APIs that are an integral part of Windows Vista and Windows Server 2008 operating systems and provides

Windows Communication Foundation (WCF), formerly called Indigo; a service-oriented messaging system which allows programs to interoperate locally or remotely similar to web services.
Windows Presentation Foundation (WPF), formerly called Avalon; a new user interface subsystem and API based on XML and vector graphics, which uses 3D computer graphics hardware and Direct3D technologies.
Windows Workflow Foundation (WF) allows for building of task automation and integrated transactions using workflows.
Windows CardSpace, formerly called InfoCard; a software component which securely stores a person's digital identities and provides a unified interface for choosing the identity for a particular transaction, such as logging in to a website

.NET framework 3.5:

It implement Linq evolution in language. So we have the folowing evolution in class:

Linq for SQL, XML, Dataset, Object
Addin system
p2p base class
Active directory
ASP.NET Ajax
Anonymous types with static type inference
Paging support for ADO.NET
ADO.NET synchronization API to synchronize local caches and server side datastores
Asynchronous network I/O API
Support for HTTP pipelining and syndication feeds.
New System.CodeDom namespace.

by The Opening Batsman · 0

ASP.NET Interview Questions

ASP.NET Interview Questions

Some useful list of ASP.NET Interview questions & notes.

ASP NET Notes

by The Opening Batsman · 0

Welcome to DotNetAnna - Freedom from ASP.NET Problems

Welcome to DotNetAnna - Freedom from ASP.NET Problems

Here, I will be posting everything related to asp.net - tips & tricks, problems - solutions, also I will be posting about Sql Server, Javascript, Jquery & a whole lot more...

So stay tuned here...

Feel free to post comments & suggestions to improve this blog.

Thanks,
DotNetAnna

by The Opening Batsman · 0

All Rights Reserved DotNetAnna | Blogger Template by Bloggermint