<< < 19 20 21 22 23 24 25 26 27 28 29 > >>   Sort: Date

How to add Buttons in JavaScript?
How to add Buttons in JavaScript? The most basic and ancient use of buttons are the "submit" and "clear", which appear slightly before the Pleistocene period. Notice when the "GO!" button is pressed it submits itself to itself and appends the name in the URL. &lt;form action="" name="buttonsGalo...
2008-05-20, 5556👍, 0💬

What is multiprogramming
What is multiprogramming? Multiprogramming is a rapid switching of the CPU back and forth between processes.
2007-11-11, 5552👍, 0💬

How can we make Windows API calls in .NET
How can we make Windows API calls in .NET? Windows API call are not COM based and they are invoked through Platform Invoke Services. Declare StringConversionType (Function | Sub) MethodName Lib "DllName" ([Args]) As Type ã StringConversionType is for what type of conversion should take place. Eithe...
2007-10-22, 5551👍, 0💬

How can we force all the validation control to run
How can we force all the validation control to run ? Page.Validate
2007-10-24, 5550👍, 0💬

Can you explain how End points, Contract, Address and Bindings are done in WCF
Can you explain how End points, Contract, Address and Bindings are done in WCF?
2007-11-04, 5547👍, 0💬

How does authorization work in ASP.NET
How does authorization work in ASP.NET? ASP.NET impersonation is controlled by entries in the applications web.config file. The default setting is “no impersonation”. You can explicitly specify that ASP.NET shouldn’t use impersonation by including the following code in the file &lt;identity imp...
2007-10-24, 5543👍, 0💬

How To Include Numeric Values in SQL statements
How To Include Numeric Values in SQL statements? - MySQL FAQs - Introduction to SQL Basics If you want to include a numeric value in your SQL statement, you can enter it directly as shown in the following examples: SELECT 255 FROM DUAL; -- An integer 255 SELECT -6.34 FROM DUAL; -- A regular number -...
2007-05-11, 5542👍, 0💬

URL with or whithout Domain Names
How can I avoid using the whole URL? The URL structure defines a hierarchy (or relationship) that is similar to the hierarchy of subdirectories (or folders) in the filesystems used by most computer operating systems. The segments of a URL are separated by slash characters ("/"). When navigating the ...
2007-03-03, 5542👍, 0💬

What helpers in the form of JSP pages are provided in Struts framework
What helpers in the form of JSP pages are provided in Struts framework? There are 4 major JSTLs (JSP Standard Tag Libraries) provided in Struts as JSP helpers. Those tag libraries are described in TLD (Tag Library Descriptor) files: struts-html.tld - Tags to help generating HTML elements. struts-for...
2007-12-05, 5541👍, 0💬

How can JavaScript be used to personalize or tailor a Web site to fit
How can JavaScript be used to personalize or tailor a Web site to fit individual users? JavaScript allows a Web page to perform "if-then" kinds of decisions based on browser version, operating system, user input, and, in more recent browsers, details about the screen size in which the browser is run...
2008-06-03, 5538👍, 0💬

How To Calculate Date and Time Differences
How To Calculate Date and Time Differences? - Oracle DBA FAQ - Understanding SQL Basics If you want to know how many years, months, days and seconds are there between two dates or times, you can use the date and time interval expressions: YEAR ... TO MONTH and DAY ... TO SECOND. The tutorial exercis...
2007-04-23, 5538👍, 0💬

Can we have different access modifiers on get/set methods of a property
Can we have different access modifiers on get/set methods of a property ? No we can not have different modifiers same property. The access modifier on a property applies to both its get and set accessors.
2007-10-23, 5536👍, 0💬

What is a fixed-width table and its advantages?
What is a fixed-width table and its advantages? Fixed width tables are rendered by the browser based on the widths of the columns in the first row, resulting in a faster display in case of large tables. Use the CSS style table-layout:fixed to specify a fixed width table. If the table is not specifie...
2008-05-13, 5535👍, 0💬

How To Perform Key Word Search in Tables
How To Perform Key Word Search in Tables? - MySQL FAQs - Managing Tables and Running Queries with PHP Scripts The simplest way to perform key word search is to use the SELECT statement with a LIKE operator in the WHERE clause. The LIKE operator allows you to match a text field with a keyword pattern...
2007-05-11, 5535👍, 0💬

Synchronized Methods and Synchronized Statements
What are synchronized methods and synchronized statements? Synchronized methods are methods that are used to control access to a method or an object. A thread only executes a synchronized method after it has acquired the lock for the method's object or class. Synchronized statements are similar to s...
2007-03-03, 5534👍, 0💬

What are events
What are events ? As compared to delegates events works with source and listener methodology. So listeners who are interested in receiving some events they subscribe to the source. Once this subscription is done the source raises events to its entire listener when needed. One source can have multipl...
2007-10-23, 5529👍, 0💬

How To Count Groups Returned with the GROUP BY Clause
How To Count Groups Returned with the GROUP BY Clause? - MySQL FAQs - SQL SELECT Statements with JOIN and Subqueries If you use the COUNT(*) function on groups returned with the GROUP BY clause, it will count the number of rows within each group, not the number of groups. If you want to count the nu...
2007-05-11, 5529👍, 0💬

How To Invoke a User Function
How To Invoke a User Function? - PHP Script Tips - Creating Your Own Functions You can invoke a function by entering the function name followed by a pair of parentheses. If needed, function arguments can be specified as a list of expressions enclosed in parentheses. Here is a PHP script example on h...
2007-04-24, 5527👍, 0💬

What can JavaScript programs do?
What can JavaScript programs do? Generation of HTML pages on-the-fly without accessing the Web server. The user can be given control over the browser like User input validation Simple computations can be performed on the client's machine The user's browser, OS, screen size, etc. can be detected Date...
2008-05-27, 5523👍, 0💬

What is fundamental of published or precreated objects in Remoting
What is fundamental of published or precreated objects in Remoting ? In scenarios of singleton or single call the objects are created dynamically. But in situations where you want to precreate object and publish it you will use published object scenarios. Dim obj as new objRemote obj.Initvalue = 100...
2007-10-23, 5522👍, 0💬

Is XML case sensitive
Is XML case sensitive? Yes, they are case sensitive.
2007-10-31, 5519👍, 0💬

How To Convert Strings to Upper or Lower Cases
How To Convert Strings to Upper or Lower Cases? - PHP Script Tips - PHP Built-in Functions for Strings Converting strings to upper or lower cases are easy. Just use strtoupper() or strtolower() functions. Here is a PHP script on how to use them: &lt;?php $string = "PHP string functions are easy ...
2007-04-21, 5519👍, 0💬

How will you do code reviews
How will you do code reviews ? The way in which code reviews are done change from person to person and also company to company. But the normally when a project is started project people define their architecture, coding standards etc in their design document. So before starting the code review you w...
2007-10-30, 5518👍, 0💬

What is ENUM
What is ENUM ? It’s used to define constants.
2007-10-23, 5518👍, 0💬

<< < 19 20 21 22 23 24 25 26 27 28 29 > >>   Sort: Date