Friday, 28 September 2012

ASP.NET : Get Div Style info from CodeBehind

I've answered :  http://forums.asp.net/t/1846358.aspx Today I'm going to explain how can we get the Div or any Style Info of HTML Control from CodeBehind. Suppose we have Div (with runat="server" attribute, means accessible from CodeBehind). <div runat="server" id="velicina" style="max-width:500px;"></div> First Add This NameSpace: using System.Web.UI.HtmlControls; Then Write Code: HtmlControl YourDiv = (HtmlControl)Page.FindControl("velicina"); Response.Write("<b>Its the Width of your Div: velicina = " + Convert.ToString(YourDiv.Style["max-width"]) + "</b>"); OUTPUT: Its...

Wednesday, 19 September 2012

JS : Disable Whole RadioButtonList by Javascript, No PostBack

Hello, Readers!  http://forums.asp.net/t/1844055.aspxRecently, I replied to an answer. most of times we try no to postback (using updatepanel is another thing, we dont want to respond to the server for better performance.) We can disable 1 radio button or item easily but how would be disable all RadioButtons or Checkboxes? which are dynamic, by SQLDatasource ETC. I made this Jquery. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"...

Sunday, 16 September 2012

ADO.NET : Connected & Disconnected Environment!

ADO.NET provides a relatively common way to interact with data sources, but comes in different sets of libraries for each way you can talk to a data source. Core Objects of .NET Framework Data ProvidersThe following table outlines the four core objects that make up a .NET Framework data provider. ObjectDescription ConnectionEstablishes a connection to a specific data source. The base class for all Connectionobjects is the DbConnection class. CommandExecutes a command against a data source. Exposes Parameters and can execute within the scope of a Transaction from...

Page 1 of 512345Next
Twitter Delicious Facebook Digg Stumbleupon Favorites More