In this post I will explain about Top most Dot Net Questions and Answers.
What is C# compiler?
What property is required for running the drop down list changed event?
AutoPostBack=true
How to Put the title for Tab ?
<%@ Page Title="Tab Title" Language="C#" MasterPageFile="~/MasterPages/Master.Master" AutoEventWireup="true" CodeBehind="NewManageRequests.aspx.cs" Inherits="Eficaz.UI.Web.NewManageRequests" %>
we have to put the attribute title for displaying title of a tab while running the application.
There is no title attribute in current Page declaration then what title will be displayed on tab?
Master page
title will be displayed. but first priority goes to current page title, if it
is empty then master page title will be displayed
How will you convert a string to character array?
char[] chararray=string.ToCharArray();
What is C# compiler?
A Compiler is a special program that processes the statements written in a particular programming language and converts them into machine language. Like everything else in the computer, the compiler also follows the Input-process-Output(I-O-P) cycle. It takes the programming language. These instructions can then be executed by the computer. This process of conversion is called compilation. For each programming language , there is a different compiler available. For example, for compiling a program written in the language , you require a Compiler, For a java program, you require a java compiler. For C# programs, you will use the csc compiler.
What property is required for running the drop down list changed event?
AutoPostBack=true
No comments:
Post a Comment