Related Posts Plugin for WordPress, Blogger...

About

Follow Us

Saturday, 30 November 2013

Introduction: in this article you will get the trick to read value from JavaScript and set in asp.net variable. Description: You need to create a html hidden field on page and set its value on client side using JavaScript and then read html hidden field using Request.Forms["hiddenfieldname"] Implementation: In the design page(.aspx) create the form as: <%@ Page Language="C#" %> <script runat="server">     string var ;       void...
Introduction:  In this article you will come to know Enable/Disable Asp.net server Controls using Javascript. Following JavaScript is used to Enable/Disable Server Controls:      <script language="javascript" type="text/javascript">         function SetButtonStatus() ...