leaptop is a child's toy ,this is very small in size ,it is use to play the games
What are some scenarios where one would use a cast net?
A cast net would be used when fishing. Cast nets are usually used when one is fishing for small fish. People have been using a version of this type of net all over the world for hundreds of years.
What is the use of asp net controls?
ASP.NET controls are server-side controls that translate into HTML code. You can program the controls with properties to manipulate how the HTML will be generated.
For example, a ASP Label control will have a property called Text, which can be set on the server side. When the page is run, it will be translated into HTML that looks something like <span ID="Label1" Text="Hello World!">
Some ASP.NET Controls, such as a Grid, translate into much more complex HTML.
The benefit is that you can program the control like any other object, and ASP.NET will take care of generating the HTML to display that control in a browser.
Where can you download Microsoft Visual Studio 2010 Professional for free?
You can download Visual Studio (VS) 2010 Express Edition for free at: http://www.microsoft.com/express
This is the only free version publicly available for everyone.
If you are a student, you could download full Professional Edition from your university MSDN AA. The university must have the contract signed with Microsoft for this special program.
If you are a student, but your university does not have MSDN AA, you can download VS 2010 Professional Edition from Microsoft DreamSpark program (https://www.dreamspark.com/default.aspx). This program requires you to be verified as a student by getting a special code from your university or by using ISIC (International Student Identity Card).
You should write this line of code before any text is sent to the browser. Remember, even the HTML tag counts. So you can type:
<?php
if (isset($_POST['submit']))
header("location:http://www.mywebsite.com/thankyou.php");
?>
Remember that if statements and other PHP statements that don't actually send output would work, but any output sent to the browser won't. Be careful of that!
.NET development encompasses the use of .NET framework for developing applications. The framework provides a set of Base class libraries and a Runtime environment. Any code that wishes to be run on this runtime environment and use these libraries has to be CTS (common type system) compliant. The framework provides language interoperability and code development in different languages. Hence any number of programs that are written in different languages but reference the framework and follow Common language specification can communicate with each other.
Presently there are a number of CLI (common language Infrastructure) compliant languages.
Example is C#, VB.NET, C++/CLI, #S, #smalltalk,F#, J#,Delphi.NET etc.
Refer related links for more information.
You can download music and video files from websites by putting in the hyperlink. This is good especially for downloading YouTube videos.
No, .NET only runs on Microsoft platforms (Windows, XBOX, etc.)
.NET can be run on Linux&Mac with Mono. However, Mono does not provide Windows-specific libraries.
How do you find out what version of net framework your computer is running?
You can go to control panel > add remove programs and check from there.
Or
Go to %systemroot%\Microsoft.NET\Framework folder. The following folders contain the released versions of the .NET Framework:
To determine which versions of the .NET Framework are installed on a computer, follow these steps:
refer related links section
What is the use of a finally clause?
Finally is used in exception blocks:
try
{
...
}
catch(...)
{
...
}
finally
{
...
}
Finally is used if you need to do something in case if an exception was occurred. And if it cannot be done in the catch block.
How do you transfer data in XML format by using ado dot net?
Dim dataSet As DataSet = New DataSet
dataSet.ReadXml("input.xml", XmlReadMode.ReadSchema)
dataSet.WriteXml("output.xml", XmlWriteMode.WriteSchema)
Hi how to create dashboard reports in cognos?
Dashboard can be created in Cognos Connection by adding the NEW PAGE and the reports or Folder. if Detail information required then mail me @ sushanth52@gmail.com
You can also use Report Studio to create a more advanced Dashboard but it takes longer. Cognos connection is faster but it is limited.
Okay so it's actually not real...
It's a fake website where they just take random users from Tumblr and say "-------: Another Tumblr User Exposed... and people supposedly comment on it and say wow... WHAT A LOSER. the pictures are hilarious. But you know it's fake because it's happened to a lot of Tumblr users and it's the exact same comments and description of how it's " a hilarious tumblr of someone who doesnt have a life and blah blah blah..." if someone on Tumblr sends you a message saying "hey people exposed/talking garbage about you just thought id tell you"... then BE HAPPY that your blog is good enough to be exposed to other fake websites.
What are the main uses of vb.net?
Visual Basic .NET, a famous event-driven visual programming system from Microsoft Corporation for Microsoft Windows.
The main uses of VB.Net is to create and develop simple applications like calculator to some large applications but not as complex as Microsoft Word and Excel.
It's also used to create ActiveX and COM(Component Object Models) components for Windows family.
It's very easy to used with built-in functionality of drag and drop windows components like Buttons, Text-boxes, Radio-Buttons, web-browser and menus etc..........
How do you debug an ASPNET application?
To debug a Web application during development. On the Debug menu, click Start to begin debugging the Web application. Visual Studio builds the Web applicationproject, deploys the application if necessary, starts the ASP.NET Development Server if you are debugging locally, and attaches to the ASP.NET worker process.
Difference between callback and postback in asp net?
A Postback occurs when the data (the whole page) on the page is posted from the client to the server..ie thedata is posted-back to the server, and thus the page is refreshed (redrawn)...think of it as 'sending the server the whole page (asp.net) full of data'. On the other hand, a callback is also a special kind of postback, but it is just a quick round-trip to the server to get a small set of data (normally), and thus the page is not refreshed, unlike with the postback...think of it as 'calling the server, and receiving some data back' With Asp.Net, the ViewState is not refreshed when a callback is invoked, unlike with a postback.
What is net messenger services?
.NET Messenger service is an Instant Messaging Program. It was earlier known as MSN Messenger. Another name for this service offered by Microsoft which is more in use is Windows Live.
Anyone with a valid Windows LIve ID can connect through this program and communicate with other people signed in through the same channel.
For more details, see related links.