Forum: ASP.NET Jul 7th, 2009 |
| Replies: 4 Views: 252 The easiest way to do it is with a compare validator control
<asp:CompareValidator ID="CompareValidator1" runat="server" ControlToCompare="DropDownList2" ControlToValidate="DropDownList1"... |
Forum: ASP.NET Jul 7th, 2009 |
| Replies: 4 Views: 252 try use this dropdown.SelectedItem.Value to retrieve the values from the drop down box.
regards. |
Forum: ASP.NET Jun 24th, 2009 |
| Replies: 3 Views: 3,425 |
Forum: ASP.NET Jun 23rd, 2009 |
| Replies: 3 Views: 3,425 Well partner in c# i will do this, probably you can translate this to vb.
System.Text.StringBuilder sbScript = new System.Text.StringBuilder("");
sbScript.Append("<script... |
Forum: ASP.NET May 18th, 2009 |
| Replies: 1 Views: 1,383 I would say this
<td><asp:Checkbox ID ="cat_title_chk" AutoPostBack="true" runat="server" OnCheckedChanged="CheckChange" Text='<%# Container.DataItem("M_CATPAGES_CAT") %>'></asp:Checkbox> </td> ... |
Forum: ASP.NET May 14th, 2009 |
| Replies: 4 Views: 1,188 Hi,
This code going into the dropdown event change, i think you are using 2003, im sorry i cant test this code in that version but in 2005 it work, hope that work for you.
string strJS = "";
... |
Forum: ASP.NET May 12th, 2009 |
| Replies: 4 Views: 1,732 I do not really understand your point. because if you want to edit something and that is why you have a edit button, the row you working with should become textbox in order to edit something. |
Forum: ASP.NET May 12th, 2009 |
| Replies: 4 Views: 1,188 hi,
you need to set the MaintainScrollPositionOnPostBack in the aspx page
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default"... |