• How do you relate an aspx page with its code behind page?
Answer / sisir champati
The topmost line in an aspx page should be as follows:
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="MyFile.aspx.cs" Inherits="MyFile" %>
The part that says CodeFile="MyFile.aspx.cs" is the one that
links the code behind page to the aspx one.
| Is This Answer Correct ? | 3 Yes | 0 No |
What purpose is served by the Application.Lock method? A. It locks the Application object, preventing other clients from altering any values in the Contents collection. B. It locks the application, preventing the server from responding to any requests for application documents. C. It locks the application, preventing non-SSL requests from being processed. D. It locks the Application object, preventing other clients from reading any values in the Content collection. E. It locks other clients from reading the Contents collection.
Explain the difference between cookies collection and form/querystring collection?
What is the difference between asp and aspx?
Why do we use asp?
how to disable previous page complete after logout process
Suppose someone gives a VB dll file (component). How to use that in an ASP file?
What is the difference between Querystring collection and Form collection?
Explain how big is the char?
very Simple Question i Know But I Cant Do It public int Y { get { return _y; } set { _y = value; } } How Can i Check for Value Y in Accessories Say if Y > 5
Explain how do you box a primitive data type variable?
Define session object?
Which is the default Scripting Language of ASP (server- side)?