Hide/Show ASP.Net Panel Control using Jquery
Posted On Tuesday, October 23, 2012 By Techreceipe.com. Under Asp.Net, Javascript Tags: javascript, Jquery, Panel
This code snippet explains the method of Hide/Show an ASP.net Panel Control using Jquery.
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="DivShow.aspx.vb" Inherits="DivShow" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#pnlSample").hide();
});
$("input").live("click", ...
Most of the time we are in the job of developing web page which gets user inputs. In all of these forms we need to check for changes in these fields ,when the user leaves from the current page alert them. This has been a tedious job and have to ...
Javascript Parser Add in for Visual Studio 2010
Posted On Monday, June 6, 2011 By Techreceipe.com. Under Visual Studio 2010 Tags: javascript, vs 2010
The code behind section of Asp.net Applications lists the members and methods available in code behind pages in a drop down list.
But for the Javascript files, there is no such mechanism to list the available members in a particular page.
Javascript Parser Add ins for VS 2010 is a very good tool, which ...
Tool Tip for DropDown List Items
Posted On Wednesday, June 1, 2011 By Techreceipe.com. Under Asp.Net Tags: asp, asp.net, javascript, vs2010
Asp.Net Drop Down List doesn't support the tool tip property.
You have designed a Page with Drop Down List and the width of the items exceeds the width of the Drop Down List.
In this case the user has to select the item to see the full text. This makes users annoying ...

