Skip to main content

Posts

Introducing Viroprotek

Introducing Viroprotek Advanced Hand Sanitizer & Disinfectant from Asian Paints @ Cheaper Price, contact me at 9884040933

Absolute Best Paint Colors For Your Living Room

https://www.housebeautiful.com/room-decorating/colors/g1181/living-room-paint-color-ideas/

Especially for Blackberry 10 Buyers, Please wait for 10 days to get Samsung Galaxy S4

We already know that technologies are growing like anything, Here I came to say something about the technologies between the Korean King Samsung Galaxy S4 & Canadian RIM's Blackberry 10. As we know that, we have waited a long days to catch this Blackberry 10 & finally came to our hands by last month with new design. As I seen the device, I have feel that am having Android device with name Blackberry, Am not much satisfied with UI & home screen. Ok if am gonna to buy an mobile with 600-800$, first I ll go for apps which I can able to install in it. Whereas in BB10 just having 1 million of apps totally & minimum number apps which will suit for me. Whereas in Android, millions of tons app, which ll suit for me, Also it will worth for money. Apart from the Apps, if you come forward & look into technology, surely we can say that Samsung will ahead than RIM. My request is asking to wait for 10 more days, to get the Samsung Galaxy S4, So you ll hav...

Apple 'iWatch' is Jony Ive's pet project, could release this year

Wearable computing is being seen as one of the next-big-things in the future of technology, whether it's Google's Glass or companies like Samsung and Apple racing to pitch their next smart watch. Independent watch-maker  Pebble  may have taken the lead, but Apple isn't too far behind. A new Bloomberg report  says that Apple's so-called iWatch is expected to release this year. The report mentions that the project is currently being fuelled by the efforts of a 100 engineers being led by Apple design chief Jony Ive himself. While the bit about 100 engineers seems excessive for a company that is known for small teams that work on the secret projects, the report does mention that Ive, who has a fetish for high-end watches, went so far as to order "boxes" of Nike sports watches for his team to study a few years ago. The business portal points out that the iWatch may end up being more profitable than Apple's other rumoured new television business. Even though ...

Samsung Galaxy S4 is likely to have an eye scrolling feature

Though there is no official word from Samsung on the features and specifications of the upcoming Galaxy S IV smartphone, the rumour mill has started churning out rumours concerning the same. According to a new report from  The New York Times , Samsung Galaxy S IV is likely to have an eye scrolling feature, thereby enabling users to scroll through webpages without even touching the screen of the phone. "The phone will track a user's eyes to determine where to scroll, said a Samsung employee who spoke on condition of anonymity because he was not authorized to speak to the news media. For example, when users read articles and their eyes reach the bottom of the page, the software will automatically scroll down to reveal the next paragraphs of text," said the report. Samsung Galaxy S IV is likely to have an eye scrolling feature, thereby enabling users to scroll through webpages without even touching the screen of the phone. However, it is still not know th...

Best Mobiles of 2013

Samsung Galaxy S3 The best Android smartphone just got better Our Expert Opinion  The Samsung Galaxy S3 is still the best Android smartphone there is. It's slim, fast, has a beautiful AMOLED screen and runs the bang-up-to-date Android 4.1 Jelly Bean operating system. The phone has just got better, too, thanks to an upgrade to support 4G. On Everything Everywhere's network we saw speeds up to 25Mbit/s, which is twice as quick as many home broadband connections. Samsung has also loaded the phone with clever features. If you bring the phone to your ear while a contact is on screen it will call that person automatically, if you flip the phone over while it's ringing it will turn the ringer off, and the Smart Stay feature uses the front camera to keep the screen on while you're looking at it. Throw in an excellent camera and you've got all the ingredients for the perfect smartphone. Read our full  Samsung Galaxy S3 review SPECS OPERATING SYSTEM Android 4...

Top 100 Dot Net Interview Questions - Part 10

91. How many types of Cookies are available in ASP.NET? There are two types of Cookies available in ASP.NET: Session Cookie - Resides on the client machine for a single session until the user does not log out. Persistent Cookie - Resides on a user's machine for a period specified for its expiry, such as 10 days, one month, and never. The user can set this period manually. 92. What is the use of the Global.asax file? The Global.asax file executes application-level events and sets application-level variables. 93. What are the Culture and UICulture values? The C...

Top 100 Dot Net Interview Questions - Part 9

81. Which namespaces are necessary to create a localized application? The System.Globalization and System.Resources namespaces are essential to develop a localized application. 82. What is the difference between an HtmlInputCheckBox control and an HtmlInputRadioButton control? You can select more than one HtmlInputCheckBox control from a group of HtmlInputCheckBox controls; whereas, you can select only a single HtmllnputRadioButton control from a group of HtmlInputRadioButton controls. 83. What is the difference between HTML and Web server controls? HTML controls are client-side controls; therefore, all the validations for HTML controls are performed at the client side. On the ...

Top 100 Dot Net Interview Questions - Part 8

71. What type of code, client-side or server-side, is found in a code-behind file of a Web page? A code-behind file contains the server-side code, which means that the code contained in a code-behind file is executed at the server. 72. To which class a Web form belongs to in the .NET Framework class hierarchy? A Web form belongs to the System.Web.UI.Page class. 73. What does the " EnableViewState " property do? Why do we want it On or Off? The EnableViewState property enables the ViewState property on the page. It is set to On to allow the page to save the users input between postback requests of a Web page; that is, between the Request and corresponding Response objects. When this...

Top 100 Dot Net Interview Questions - Part 7

61. What do you understand by aggregate dependency? Aggregate dependency allows multiple dependencies to be aggregated for content that depends on more than one resource. In such type of dependency, you need to depend on the sum of all the defined dependencies to remove a data item from the cache. 62. How can you ensure that no one has tampered with ViewState in a Web page? To ensure that no one has tampered with ViewState in a Web page, set the EnableViewStateMac property to True . 63. What is the difference between adding items into cache through the Add() method and through the Insert() method? Both methods work in a similar way except that the Cache.Add() function returns an ...

Top 100 Dot Net Interview Questions - Part 6

51. Describe the complete lifecycle of a Web page. When we execute a Web page, it passes from the following stages, which are collectively known as Web page lifecycle: Page request - During this stage, ASP.NET makes sure the page either parsed or compiled and a cached version of the page can be sent in response Start - During this stage sets the Request and Response page properties and the page check the page request is either a postback or a new request Page Initialization - During this stage, the page initialize and the control's Unique Id property are set Load - During this stage, if the request is postback, the control properties are loaded without loading the view state and control state otherwise loads the view state Validation ...

Top 100 Dot Net Interview Questions - Part 5

41. What are the events that happen when a client requests an ASP.NET page from IIS server? The following events happen when a client requests an ASP.NET page from the IIS server: User requests for an application resource. The integrated request-processing pipeline receives the first user request. Response objects are created for each user request. An object of the HttpApplication class is created and allocated to the Request object. The HttpApplication class processes the user request. 42. Explain file-based dependency and key-based dependency. In file-based dependency,...

Top 100 Dot Net Interview Questions - Part 4

31. Which method is used to force all the validation controls to run? The Page.Validate() method is used to force all the validation controls to run and to perform validation. 32. Which method has been introduced in ASP.NET 4.0 to redirect a page permanently? The RedirectPermanent() method added in ASP.NET 4.0 to redirect a page permanently. The following code snippet is an example of the RedirectPermanent() method: RedirectPermanent("/path/Aboutus.aspx"); 33. How can you send an email message from an ASP.NET Web page? You can use the System.Net.Mail.MailMessage and the System.Net.Mail.SmtpMail classes to send an email in your Web ...

Top 100 Dot Net Interview Questions - Part 3

21. What is Query String? What are its advantages and limitations? The Query String helps in sending the page information to the server. The Query String has the following advantages: Every browser works with Query Strings. It does not require server resources and so does not exert any kind of burden on the server. The following are the limitations of Query String: Information must be within the limit because URL does not support many characters. Information is clearly visible to the user, which leads to security threats. 22. What is actually returned from ...

Top 100 Dot Net Interview Questions - Part 2

11. What is the behavior of a Web browser when it receives an invalid element? The behavior of a Web browser when it receives an invalid element depends on the browser that you use to browse your application. Most of the browsers ignore the invalid element; whereas, some of them display the invalid elements on the page. 12. What are the advantages of the code-behind feature? The code-behind feature of ASP.NET offers a number of advantages: Makes code easy to understand and debug by separating application logic from HTML tags Provides the isolation of effort between graphic designers and software engineers Removes the problems of browser incompatibility by pro...

Top 100 Dot Net Interview Questions - Part 1

1. What is ASP? Active Server Pages (ASP), also known as Classic ASP, is a Microsoft's server-side technology, which helps in creating dynamic and user-friendly Web pages. It uses different scripting languages to create dynamic Web pages, which can be run on any type of browser. The Web pages are built by using either VBScript or JavaScript and these Web pages have access to the same services as Windows application, including ADO (ActiveX Data Objects) for database access, SMTP (Simple Mail Transfer Protocol) for e-mail, and the entire COM (Component Object Model) structure used in the Windows environment. ASP is implemented through a dynamic-link library (asp.dll) that is called by the IIS server when a Web page is requested from the server. 2. What is ASP.NET? ASP.NET is a specification developed by Micro...