Top "Webforms" questions

Web Forms is a part of the ASP.

How to get value of a cell in row data bound event? and how to check if a cell is empty?

I'm using sqldatasource and a GridView. I want to get the value of a cell from the GridView in the …

c# asp.net sql webforms rowdatabound
Change textbox's css class when ASP.NET Validation fails

How can I execute some javascript when a Required Field Validator attached to a textbox fails client-side validation? What I …

asp.net javascript jquery validation webforms
How to loop through data in WebForms like in MVC

How do I loop through data in WebForms like I do in ASP.NET MVC? For instance, in MVC, this …

asp.net asp.net-mvc webforms
LINQ: Get all selected values of a CheckBoxList using a Lambda expression

Consider a scenario where you want to retrieve a List or IEnumerable of the values of all the selected checkboxes …

c# asp.net linq webforms
How to capture submit event using jQuery in an ASP.NET application?

I'm trying to handle the submit event of a form element using jQuery. $("form").bind("submit", function() { alert("You are …

asp.net jquery webforms form-submit
Using jQuery's getJSON method with an ASP.NET Web Form

How do I go about calling a method on an ASP.NET Web Form page using the getJSON method on …

asp.net jquery webforms getjson
Web API for vs 2010 installation & configuration

I want to start learning Web API for that i need to set it up on my visual studio 2010. In …

asp.net visual-studio-2010 asp.net-web-api webforms
How Do You Set Value of Input Element Programmatically Through CSharp?

Hello I am trying to automate my IE to log into a website but the problem is that the input …

c# html webforms autofill browser-automation
submit disabled fields

I know the defined behavior for web forms is to not submit disabled fields... but that's not the definition I …

jquery html webforms
When to use runat="server" on normal HTML

Is it ever appropriate to use runat="server" on a standard HTML element instead of a true ASP.NET control? …

asp.net html webforms