Categories
Asp, Asp.net

How To Set Maxlength For Multiline Textbox In Asp.Net

How To Set Maxlength For Multiline Textbox In Asp.Net In this post we will learn How To Set Maxlength For Multiline Textbox In Asp.Net.Here we are using jQuery to achieve this. Code: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>How To Set Maxlength For Multiline Textbox In Asp.Net</title> <script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"> </script> <script type="text/javascript"> $(function() { $(‘#mtxt’).keypress(function(e) { var txt […]

Categories
Asp, Asp.net

Compare Validator Example In Asp.Net

Compare Validator Example In Asp.Net In this post we will learn how to use a Compare Validator in Asp.net,Compare Validator Example In Asp.Net.Compare Validator can compare two values, for instance the values of two controls.With Compare Validator, Controltovalidate attribute to specify which control to validate.In addition to that, we specify a control to compare.The operator attribute […]

Categories
Microsoft Office

How To Launch a Program from PowerPoint?

How To Launch a Program from PowerPoint? In this post we will learn How To Launch a Program from PowerPoint?.By this way we can launch a program direct from the slide. 1. Launch PowerPoint, create new PowerPoint document or edit the already created one. 2. To be able to open a program from PowerPoint.The object can be […]

Categories
Asp, Asp.net

How To Show Image In Label

How To Show Image In Label In this post we will discuss How To Show Image In Label. Design View: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>How To Show Image In Label</title> <style type="text/css"> body { width:980px; margin:0px auto; text-align:center; font-family:Calibri; font-size:14px; } .cen { text-align:center; margin-left:350px } </style> […]