Wednesday, 25 May 2016

Web.config File

web.config is configuration file for the Asp.net web application. It includes the settings information of the web application. Web.Config is created and modified in .xml extension. The specfic tags of the web.config files contains the information about the Settings,Security,Connection strings,Session States, and all the configurations part.For Instance : -< configuration >< appSettings...
Read More »

ADO .NET

ADO .NET is a port of connection between our applications and Data base, ADO .NET provides many classes to communicate and becomes the commuication track between the databsae and the applicatio...
Read More »

Shortcut to show formulas in excel sheet

To show the formula cell in the excel sheet it can be easily done by VB. The Shortcut would be press (CTRL) and (`) just on the left side of the numeric key (1) and to again make the simple view just click the same combination or press (ESC)...
Read More »

Quality Management

Quality Management term is not only the product quality but it's also termed by the Organizational improvement.ISO and CMM are the main parts of the QMS. CMM - Is a Framework of implementation. ISO - Is a standard of implementatio...
Read More »

Example Prview of Headings From H2 - H6

This is the Example Prview of Headings From H2 - H6  Heading of H2 Tag Heading of H3 Tag Heading of H4 Tag Heading of H5 Tag Heading of H6 Ta...
Read More »

HTTP Stands for ?

HTTP Stands for Hyper Text Transfer Protoco...
Read More »

FTP Stands For ?

FTP Stands for File Transfer Protoco...
Read More »

HTTPS Stands For ?

HTTPS Stands for Secure Hyper Text Transfer Protocol.Which can be defined as the secure layer when the data exchanged in between web page...
Read More »

URL Stands For ?

URL Stands for uniform Resource Locator.URL is the address of the unique address of the web page on WWW (World Wide Web).The links on the web page points to the uniform address of the document on world wide server to retrieve the information.&nbs...
Read More »

Full form of JPEG/JPG and GIF

JPEG/JPG - Full form of JPEG is Joint Photographic Experts Group.GIF - Graphic Interchange Forma...
Read More »

Computer Multitasking

Computer Multitasking/MultiProcesses - As the name gives the info to perform multi tasks at the same momentem, equally sharing the resources to perform muliple task at the same time. Where we can work on word, excel or more applications simultaneously.Read More....&nbs...
Read More »

How to insert image in web page.

inserting image :- <img src="yourfile.jpg">br /> inserting image with height , width , border. <br /><img src="yourfile.jpg" width="200" height="200" border="1"&g...
Read More »

ALT Attribute in img tag

ALT attribute defines the alternative text for the image which gives the description or info of the image and if the image is not shown on the browser yet the alternative text is displayed giving the description of the image.Alternative text is displayed when mouse pointer focuses it this ALT attribute can be compared with the function of ToolTip text in .NET  &lt;img src="niit.jpeg" alt="NIIT Technologies" /&gt;...
Read More »

Setting the text for label control windows form

Creating an instance of a Label.Label label1 = new Label();Set text to display on the control label1.Text = "First Name";Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1...
Read More »

GAC Stands For ?

GAC stands for Global Assembly Cach...
Read More »

Full form of WPF ?

WPF - Windows Presentation Foundation whis is renderd as part of .NET FrameWork 3.0 which supports 3D rendering, Animation and Multimedia features also previously known as Avalon.WPF runtime libraries are included with all versions of Microsoft Windows since Windows Vista and Windows Server 2008. Users of Windows XP SP2/SP3 and Windows Server 2003 can optionally install the necessary librarie...
Read More »

BCL Stands For ?

BCL - Base Class Librar...
Read More »

CTS Stands For ?

CTS - Common Type Syste...
Read More »

CLR Stands for ?

CLR - Common Language Runtim...
Read More »

CAS Stands For ?

Code Access Security is a part of .NET security model that determines whether or not a piece of code is allowed to run and what resources it can use while runnin...
Read More »

W3C Stands For ?

The World Wide Web Consortium an international community known for making the Web Standards.&nbs...
Read More »

Set the Background colour of the HTML page

<body bgcolor="red"> ...
Read More »

Hyperlink through web page using anchor tag.

&lt;a href="www.google.com"&gt;Google Page &lt;/a&gt;&nbs...
Read More »

Displaying FileDialog Box~ mkniit

OpenFileDialog openFileDialog1 = new OpenFileDialog();openFileDialog1.InitialDirectory = "c:\\" ;openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*" ;openFileDialog1.FilterIndex = 2 ;openFileDialog1.RestoreDirectory = true ;if(openFileDialog1.ShowDialog() == DialogResult.OK){try{if ((myStream = openFileDialog1.OpenFile()) != null){}}catch (Exception ex){MessageBox.Show("Un-Expected Error : " + ex.Message);}...
Read More »

Move Files using c#

string filesource = @"C:\file.txt";string filedestination = @"C:\Myfolder\Ramneek\file.txt";System.IO.File.Move(filesource,filedestination...
Read More »

Copyind Files or Directories using c#

public class SimpleFileCopy{static void Main(){string fileName = "test.txt";string sourcePath = @"C:\Users\Public\TestFolder";string targetPath = @"C:\Users\Public\TestFolder\SubDir";Use Path class to manipulate file and directory paths.string sourceFile = System.IO.Path.Combine(sourcePath, fileName);string destFile = System.IO.Path.Combine(targetPath, fileName);if (!System.IO.Directory.Exists(targetPath)){System.IO.Directory.CreateDirectory(targetPath);}System.IO.File.Copy(sourceFile,...
Read More »

Best source to learn DotNet

The best source to learn DotNet :MSDN Library.http://msdn.microsoft.comDotNet Spider.www.dotnetspider.c...
Read More »

Quality Control

Quality control is the process by which the quality of the product is compared with specific standards and action is taken if the quality does not matches the applicable standards.Quality Control is the detection of defects rather than their preventio...
Read More »

Basic Quality Control Activities.

Quality Control activities includes Inspection,Testing,Checkpoint review.Inspection ; It includes the structured review by checking every module of SDLC using checklists,It helps in identifying major threats.Testing : Refers to the process of checking all positive and negative features.Checkpoint review : Refers to the questions raised to check the major problem areas of the developed system...
Read More »

Software Development Life Cycle (SDLC) Errors

Errors types that might get introduced in a Software Product.Leakage Errors : These errors are not detected at a particular stage in the development cycle of the software and are carried forward to the next stage.New Errors ; With leakage errors new errors might get raised at a particular stage.Compatibility Errors : Two or more modules may work correctly when isolated but they might get exception when they are integrate...
Read More »

Garbage Collection

Garbage Collection is a process that automatically frees the memory of objects that are no more in us...
Read More »

SQL server displaying all the contents of the table

Select * from Schema.table_nameSelect * from manoj.table1where manoj is the schema of the created database in which the table1 is store...
Read More »

Selecting specific columns form the database

SELECT Name,Age,RollNo from Schema.Tabl...
Read More »

Change the name of the column while displaying the data from database

SELECT 'Name'= EmpName, 'ID NO' = EmpID From Schema.Tabl...
Read More »

Retrieve Selected rows from database

SELECT * From Schem.Table1 WHERE Name = 'Manoj'This query retrieves the Name details from the Table1 where the name is mano...
Read More »

Multicast deligate with DATE TIME arguments

public delegate void PowerDeviceOn(DateTime autoPowerOff);...
Read More »

Loading assembly into current application.

AppDomain domain = AppDomain.CurrentDomain; string myPath = Path.Combine(domain.BaseDirectory, "ramneekexample.dll"); Assembly asm = Assembly.LoadFrom(myPath)...
Read More »

MS OFFICE/TIPS

1        How to select only UN read mails in outlook Solution : Type read:false in the search box of outlook or on Home tab click Filter E-mail button and then Unread option(Shortcut Key ALT + H + L + U). 2      How to use HLOOKUP Function in excel. Solution : =HLOOKUP(“_Column”,”_Range,”Parameter”) 1Shortcut key  to insert current time in MS EXCEL ?  CTRL + SHIFT + : 2 What is Recent...
Read More »

Full form of HTML,CSS,VBA,PHP,DOM.....

HTML - HyperText Markup Language.DHTML - Dynamic Hyper Text Markup Language.XHTML - eXtensible HyperText Markup Language.XML - EXtensible Markup Language .UML - Unified Modeling Language.CSS - Cascading Style Sheets.VBA - Visual Basic for Applications.VB - Visual BasicGUI - Graphical User interface.WWW - World Wide Web.DTD - Document Type Declaration.XSLT - eXtensible Stylesheet Language Transformations.DOM...
Read More »

HTML Full Form

HyperText Markup Language This is a markup language for formatting web documents or web pages. Such document files are stored with '.htm' or '.html' extensions. The computer software that interprets HTML documents and displays content on screen are called web browsers. Google Chrome, Mozilla Firefox, Internet Explorer and Safari are most famous web browsers. Tim Berners-Lee was the first to invent HTML. In late 1990 he produced and parsed a HTML document successfully. At current, W3C...
Read More »

Friday, 20 May 2016

How to Book Namotel Mobile Online Register @Rs 99 – Buy Now www.namotel.com Order

Namotel Mobile Online Booking @ Rs 99 – Namotel AcchedinSmart Phone Registration at www.namotel.com, Buy Now Namotel Cheap 99 Android Phone Option Available for Cash on Delivery. Don’t wait, Book Order Early From Below Link. How to Buy Namotel Mobile Online Register @ Rs 99 – Book Now Android Mobile  @ www.namotel.com : Namotel Acchedin Rs 99...
Read More »