Web Forms :: Validating Controls Based On Other Controls?

Jun 10, 2010

Firstly I have many controls, mainly radio buttons, that have required validators and a validation summary.

I have some radio buttons which contain property types, e.g. house, flat, maisonette etc. Then I have another set of radio buttons with floor level (Top, Middle, Ground). How can I make floor level mandatory only when flat or maisonette is selected and still be shown in the validation summary?

View 11 Replies


Similar Messages:

C# Validating Model Based On MetadataType?

Apr 3, 2011

My team is building ViewModels with model validation inside the MetadataType. My question is that I'm using a non-MVC project, can I use it to validate the model?

[MetadataType(typeof(PersonMetadata))]
public class Person
{
public int ID { get; set; }
public string Name { get; set; }

[Code]....

View 1 Replies

Web Forms :: Validating Gridview Controls Directly?

Mar 18, 2010

I have a situation where a page fails validation if a Gridview on the page contains no datarows.

The rest of the page validates using a validation summary. I'd ideally like the failed validation message to be passed on to the validation summary.

View 4 Replies

Web Forms :: Validating Dynamically Created Controls?

Mar 21, 2011

I'm creating an quiz application which queries the database and extracts the questions and choices. I use dynamically created controls such as a checkbox list and fill the values dynamically. How do I do this? Right now I have these functions:

array_random_init(); this creates a 10 element integer array from 1-20

- extract_question(i): this extracts a question indexed at i in DB, I created the controls and set the appropriate text in this function.

- validate_question(i); this is called by button_click and validates the question i according to DB.

I understand I have to recreate the controls in Page_init on postback, but what should it look like? Do I need to add "if IsPostBack" in page_init, or do I create the controls in page_init() and reset their properties in page_load when I use extract_question(i)? Also, I cannot seem to clear the selected boxes on postback, I added page directive enableviewstate=false" but it doesn't work. What's the right way to do it?

View 3 Replies

Forms Data Controls :: Validating Insert Values In Detailsview?

Oct 26, 2010

I'm inserting data into a SQL database through a detailsview. When a user inserts an incorrect data type or leaves a required field blank it shoots off to a big error screen. Is there a control that I can use that will allow it to give an error (with a little star or something) that says which field is incorrect without the big error screen?

View 3 Replies

Forms Data Controls :: Validating A Textbox Inside A Gridview?

Mar 22, 2010

i have textboxes(edititemtemplate and footertemplate) inside a gridview.

i want to prevent the user from entering hyphen(-) in the textboxes.

View 2 Replies

Forms Data Controls :: Validating The Input Fields In The Detailviews

Jan 27, 2011

I added requiredvalidator to validate the input field in hte detailviews control. the only probably problem is error message shows up when form popup. I only want to show the error message after I click on the submit button. here's my code.

<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/main.Master"
&nbsp;&nbsp;&nbsp; CodeBehind="WebForm4.aspx.vb" Inherits="hospital.WebForm4" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<asp:GridView ID="gvList" runat="server" DataKeyNames="taxID" DataSourceID="odsList"
EnableModelValidation="True">
<Columns>
<asp:CommandField ShowSelectButton="True" />
</Columns>
</asp:GridView>
<asp:DetailsView ID="dvDetail" runat="server" DataSourceID="odsDetail" EnableModelValidation="True"
Height="50px" Width="125px" DefaultMode="Edit">
</asp:DetailsView>
<asp:ObjectDataSource ID="odsList" runat="server" SelectMethod="GetHospitals" TypeName="hospital.Hospital">
</asp:ObjectDataSource>
<asp:ObjectDataSource ID="odsDetail" runat="server" SelectMethod="GetHospitalsByTaxID"
TypeName="hospital.Hospital" UpdateMethod="Update">
<SelectParameters>
<asp:ControlParameter ControlID="gvList" Name="taxID" PropertyName="SelectedValue"
Type="Int32" />
</SelectParameters>
<UpdateParameters>
<asp:ControlParameter ControlID="dvDetail" Name="nTaxID" PropertyName="SelectedValue"
Type="Int32" />
<asp:ControlParameter ControlID="dvDetail" Name="sHospitalName" PropertyName="SelectedValue"
Type="String" />
<asp:ControlParameter ControlID="dvDetail" Name="sAddress1" PropertyName="SelectedValue"
Type="String" />
<asp:ControlParameter ControlID="dvDetail" Name="sAddress2" PropertyName="SelectedValue"
Type="String" />
<asp:ControlParameter ControlID="dvDetail" Name="sCity" PropertyName="SelectedValue"
Type="String" />
<asp:ControlParameter ControlID="dvDetail" Name="sState" PropertyName="SelectedValue"
Type="String" />
<asp:ControlParameter ControlID="dvDetail" Name="sZip" PropertyName="SelectedValue"
Type="String" />
</UpdateParameters>
</asp:ObjectDataSource>
<asp:LinkButton ID="lbnSave" runat="server">Save</asp:LinkButton>
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
</asp:ToolkitScriptManager>
<asp:ModalPopupExtender ID="upAdd_ModalPopupExtender" runat="server" TargetControlID="btnAdd"
PopupControlID="pnlAdd" BackgroundCssClass="modalBackground" OkControlID="btnOk"
CancelControlID="btnClose">
</asp:ModalPopupExtender>
<asp:Button ID="btnAdd" runat="server" Text="Add" />
<asp:Panel ID="pnlAdd" runat="server" CssClass="modalPopup">
<asp:UpdatePanel ID="upAdd" runat="server" UpdateMode="Conditional">
<ContentTemplate>
sdfsdfsdfsdfsdf
<asp:FormView ID="FormView1" runat="server" DataSourceID="odSrcHospital" DefaultMode="Insert">
<InsertItemTemplate>
<table>
<tr>
<td>
taxid
</td>
<td>
<asp:TextBox ID="tbxTaxID" runat="server" Text='<%# Bind("nTaxID") %>'></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvTaxID" runat="server" ControlToValidate="tbxTaxID"
ErrorMessage="Required" Display="Static" SetFocusOnError="true" />
</td>
</tr>
<tr>
<td>
h name
</td>
<td>
<asp:TextBox ID="tbxName" runat="server" Text='<%# Bind("sHospitalName") %>'></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvHospitalName" runat="server" ControlToValidate="tbxName"
ErrorMessage="Required" Display="Static" SetFocusOnError="true" />
</td>
</tr>
<tr>
<td>
add1
</td>
<td>
<asp:TextBox ID="tbxAdd" runat="server" Text='<%# Bind("sAddress1") %>'></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvAddress" runat="server" ControlToValidate="tbxAdd"
ErrorMessage="Required" Display="Static" SetFocusOnError="true" />
</td>
</tr>
<tr>
<td>
add2
</td>
<td>
<asp:TextBox ID="tbxAdd2" runat="server" Text='<%# Bind("sAddress2") %>'></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvAddress2" runat="server" ControlToValidate="tbxAdd2"
ErrorMessage="Required" Display="Static" SetFocusOnError="true" />
</td>
</tr>
<tr>
<td>
city
</td>
<td>
<asp:TextBox ID="tbxCity" runat="server" Text='<%# Bind("sCity") %>'></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvCity" runat="server" ControlToValidate="tbxCity"
ErrorMessage="Required" Display="Static" SetFocusOnError="true" />
</td>
</tr>
<tr>
<td>
state
</td>
<td>
<asp:TextBox ID="tbxState" runat="server" Text='<%# Bind("sState") %>'></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvState" runat="server" ControlToValidate="tbxState"
ErrorMessage="Required" Display="Static" SetFocusOnError="true" />
</td>
</tr>
<tr>
<td>
zip
</td>
<td>
<asp:TextBox ID="tbxZip" runat="server" Text='<%# Bind("sZip") %>'></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvZip" runat="server" ControlToValidate="tbxZip"
ErrorMessage="Required" Display="Static" SetFocusOnError="true" />
</td>
</tr>
<tr>
<td>
</td>
<td>
<asp:Button ID="submit" Text="submit" runat="server" CommandName="Insert" />
</td>
</tr>
</table>
</InsertItemTemplate>
</asp:FormView>
<br />
<br />
<asp:Button ID="btnOk" runat="server" Text="Ok" />
<asp:Button ID="btnClose" runat="server" Text="Close Me" />
</ContentTemplate>
</asp:UpdatePanel>
</asp:Panel>
<asp:ObjectDataSource ID="odSrcHospital" TypeName="hospital.Hospital" SelectMethod="GetHospitals"
runat="server" DeleteMethod="Delete" InsertMethod="Update" UpdateMethod="Update">
<DeleteParameters>
<asp:ControlParameter Direction="Input" DefaultValue="0" ControlID="grdHospital"
Name="taxID" />
</DeleteParameters>
<InsertParameters>
<asp:FormParameter FormField="tbxTaxID" Name="nTaxID" Direction="Input" />
<asp:FormParameter FormField="tbxName" Name="sHospitalName" Direction="Input" Type="String" />
<asp:FormParameter FormField="tbxAdd" Name="sAddress1" Direction="Input" Type="String" />
<asp:FormParameter FormField="tbxAdd2" Name="sAddress2" Direction="Input" Type="String" />
<asp:FormParameter FormField="tbxCity" Name="sCity" Direction="Input" Type="String" />
<asp:FormParameter FormField="tbxState" Name="sState" Direction="Input" Type="String" />
<asp:FormParameter FormField="tbxZip" Name="sZip" Direction="Input" Type="String" />
</InsertParameters>
<UpdateParameters>
<asp:Parameter Name="nTaxID" Type="Int32" />
<asp:Parameter Name="sHospitalName" Type="String" />
<asp:Parameter Name="sAddress1" Type="String" />
<asp:Parameter Name="sAddress2" Type="String" />
<asp:Parameter Name="sCity" Type="String" />
<asp:Parameter Name="sState" Type="String" />
<asp:Parameter Name="sZip" Type="String" />
</UpdateParameters>
</asp:ObjectDataSource>
</asp:Content>

View 5 Replies

Forms Data Controls :: Date Text Cell In Gridview Needs Validating

Apr 11, 2010

I have the following piece of code which I was hoping would result in an error message being displayed if an incorrect date format was input rather than an website error page saying "The string was not recognized as a valid DateTime."

<asp:TemplateField HeaderText="DateCompleted" SortExpression="DateCompleted"> <EditItemTemplate> <asp:TextBox ID="TextBox2" runat="server" Text='<%# Bind("DateCompleted") %>'> </asp:TextBox> <asp:CompareValidator ID="CompareValidator" ValidationGroup="GridView1" ControlToValidate="TextBox2" errormessage="Invalid Date" Display="Dynamic" Operator="DataTypeCheck" Type="Date" runat="Server" /> </EditItemTemplate> <ItemTemplate> <asp:Label ID="Label2" runat="server" Text='<%# Bind("DateCompleted") %>'></asp:Label> </ItemTemplate> </asp:TemplateField>

View 2 Replies

Forms Data Controls :: Validating Dropdown Selection In Footertemplate In Gridview?

Feb 8, 2010

I have two dropdowns in the footertemplate of my gridview inside a usercontrol.

I also have a button "btnADD" inside the footer template. I am using the footertemplate to add a new row to the grid.

What do I do to validate on Button_click event for 'btnAdd' if a value is selected in the dropdown other than "select.." which I dynamically add in rowdatabound event?

I have this javascript function that I wanted to implement, but it gets called in the Page_load event rather than the button click event and gives an error.

The javascript function that I need to call is this: ( I created a method to return a string to use it in regards to RegisterClientScriptBlock, but do not know exactly how to use it)

rotected string BuildValidation()
{
StringBuilder sb = new StringBuilder();
sb.Append("<script type='text/javascript'>");
sb.Append("function ValidateWComp() {");

[Code]....

View 1 Replies

Forms Data Controls :: Prevent Update Button On The Gridview From Validating Usercontrol?

Jul 8, 2010

I have a Gridview and a UserControl on the same page. How do I prevent update button on the gridview from validating Usercontrol.

View 4 Replies

Validating Controls In ListView Insert / Edit Templates?

Oct 29, 2010

I added a RequiredFieldValidator to my InsertItemTemplate, and it seems to be working fine. The problem I am having, however, is that now I cannot do anything else in the ListView (like edit or delete items) UNLESS the required field has a value. Is there some way I can manually do the validation when the user clicks the 'Insert' button on the InsertItemTemplate, or some other little trick I can perform so the user doesn't have to first type in a value just to delete something else in the list?

View 1 Replies

2 User Controls On Registered On One Page Not Validating Validation Properly?

Mar 9, 2011

I have 2 user controls on registered on one aspx page. UserControl1 us having one text box with require field and one submit button.UserControl2 is also having one text box with requirefiled and save button.
Expected o/p is- When I am clicking on any button out of 2(submit or save). Then only related text boxof that user control should be validate. But the error is Both text boxes are validate.

View 1 Replies

Forms Data Controls :: Validating An Entire Column In Gridview Before Data Is Saved In Database?

Mar 24, 2010

I am using a bound gridview in ASP.NET 2.0. The gridview has the ability to edit/update and insert rows. One of the columns holds a number which represents a percentage. What I cannot figure out is how to ensure that all the rows in the gridview total 100% before being able to send the updates or newly inserted data to the database.

For example say there are 5 rows in the gridview, each row has 20% stored in the column so it adds up to 100% which is fine, the data is updated/inserted in the database. But say each row only had 15% totalling 75%, the user should not be able to send the updated/inserted data to the database until either they add a new row with a percentage of 25 or they edit the other rows for a cumulative total of 100%

I am not familiar with javascript or AJAX

View 6 Replies

Web Forms :: Submit Button Validating All Radio Button Controls?

Feb 9, 2011

I have 3 tabs with 3 seperate gridview and radios buttons in them. Each page has a seperate submit button, but for some reason each pages submit button is validating all the radio buttons on each tab, i picked the seperate controls to validate under but on any submit theya re all validated instead of just the ones on that tab.

[Code]....

View 5 Replies

Validation Controls Are Not Validating On Enabling On Client Side Using Java Script?

Jun 11, 2010

As per requirement I disabled all validation controls in page on PageLoad event in server side.

On clicking submit button I want to activate them and validate the page and if the page is ok submit other wise not.

I am able to enable all validaters but one thing that I am unable to understand is that they do not validate the page. I set alerts and check they are being enabled but they do not validate the page and let the page submit.

Below is my script:

[code]....

View 1 Replies

Forms Data Controls :: Validating Page With Listview Edit Item And Insert Item Templates Are Both Present

Aug 9, 2010

I have a listview set up in "flow" mode where the existing records are all on an extended page so you can scroll down to any record.

The InsertItem Template is in the first position, making it easy to insert a new record.

And one can scroll down the page to any record, click the edit button and update that record -- nice having everything on one scrollable page.

I am running into a problem with validations. I have validation controls restricting inputs for all the textboxes on the Insert Item template. They work fine. And on Item Inserted I am running a page validation:

Page.Validate()
If Not Page.IsValid Then
e.Cancel = True
End If

which works fine also.

The problem occurs when I scroll down to an existing record, and go to edit it. I have all the same validation constraints on the textboxes for the EditItemTemplate as I have on the InsertItemTemplate. But I cannot successfully do a page validation on updating the record. The code I am using on update is:

Protected Sub LVRentals_ItemUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.ListViewUpdateEventArgs) Handles LVRentals.ItemUpdating
Page.Validate()
If Not Page.IsValid Then
e.Cancel = True
End If
End Sub

This results in a Cancel even if there are no validation errors on the InsertItemTemplate because the Page.Validate() seems to be causing the InsertItemTemplate to think its fields should be filled out also.

Here is the code for a typical entry of the InsertItem Template:

[code]....

All the controls in the Edit Item template are part of ValidationGroup "edit1" and those of the InsertItem Template are part of ValidationGroup "edit2"

How can I get around receiving validation errors on the InsertItem Template when I am trying to validate just the EditItemTemplate when both are present on the page?

View 2 Replies

Forms Data Controls :: Adding Controls To A Webpage Based On The Results Of A SQL Sproc

May 11, 2010

Depending on the data returned from a Stored Procedure, I need to add specific controls to a page and then when they are populated by the user, write them back to the database. What is the easiest way of doing this?

View 9 Replies

DataSource Controls :: Validating Length Of Data In Context With Stored Procedure Parameters?

Apr 19, 2010

I am building a WCF Web Service that has a Business Logic layer (that implements all validation logic and other business rules) and a Data Access Layer that makes calls to Stored Procedures in my database.

I would like to be able to validate the length of data passed against that of the length of the parameters in the Stored Procedures without having to explicitly define the parameter lengths in my WCF Web Service.

Eg:

Person Object
Person.Name = "John Dhoe"
Person.Age = 37
SQL Stored Procedure
SavePerson
FullName Varchar(15)
Age Int

In my BLL or DAL, I would like to be able to do something like :

If(Person.Name.length == SavePerson.Parameters["FullName"].Length)
{
Return true;
}
else
{
Return false;
}

Has anyone tried this out before? Is this even possible?

View 2 Replies

Forms Data Controls :: Validating TextBox Data Against Multiple Types Of Data

Dec 22, 2010

I m Using a GridView: Columns: "Ser_type" tells what type of data is it i.e. VC for Varchar, NU for Numeric, DT for DateTime etc, for the time being i m using datavalidation controlls at design time. this is not a good approach. I just wan to do is that, DataValidationControlls should be created at RunTime and TextBox should validate data at runtime only. i.e. if Data required in the TextBox is of Type VC then it should validate only at runtime, if DT then validate DateTime only at Runtime similarly for all dataType:

<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" >
</asp:ScriptManager>
<div>
<div>
<asp:Panel ID="Panel1" runat="server" Height="150px" Style="left: 0px; position: relative;
top: 0px" Width="970px">
<asp:Image ID="Image1" runat="server" ImageUrl="~/Images/Home.jpg" Style="position: relative" /></asp:Panel>
</div>
<div>
<asp:Panel ID="Panel2" runat="server" BackColor="PaleTurquoise" Height="350px" Style="left: 0px;
position: relative; top: 0px" Width="970px">
<asp:Label ID="lbl_Home" runat="server" Font-Bold="True" Font-Size="XX-Large" ForeColor="#404040"
Style="position: relative" Text="Welcome to AutoSoft Dynamics" Width="700px"></asp:Label> <br />
<table style="left: 0px; position: relative; top: 0px">
<tr>
<td colspan="2" style="height: 21px">
<asp:Label ID="lbl_messege" runat="server" Style="position: relative" Font-Bold="True" Font-Size="16pt" ForeColor="#0000C0" Width="100%"></asp:Label></td>
</tr>
<tr>
<td colspan="2">
<asp:Label ID="lblExpMessage" runat="server" Style="position: relative" Width="100%" Font-Bold="False" Font-Size="12pt" ForeColor="Red"></asp:Label></td>
</tr>
<tr>
<td style="width: 464px">
<asp:Button ID="Button1" runat="server" Style="position: relative" Text="Button" />
<asp:Button ID="Button2" runat="server" PostBackUrl="~/EmpDetails.aspx" Style="position: relative"
Text="Go to Details Page" /></td>
<td style="width: 162px">
</td>
</tr>
</table>
<br />
</asp:Panel>
<asp:Panel ID="Panel3" runat="server" BackImageUrl="~/Images/Footer.bmp" Height="50px"
Style="left: 0px; position: relative; top: 0px" Width="970px">
</asp:Panel>
<br />
<cc1:ModalPopupExtender ID="ModalPopupExtender1" runat="server"
BackgroundCssClass="modalBackground"
PopupControlID="Panel_Popup"
CancelControlID="btnRemindLater"
TargetControlID="Button1" >
</cc1:ModalPopupExtender>
<asp:Panel ID="Panel_Popup" runat="server" Width="540px" HorizontalAlign="Center" >
<br />
<table width="100%" style="left: 0px; position: relative; top: 0px; background-color: inactivecaptiontext">
<tr>
<td colspan="4">
<asp:Label ID="lbl_Title" runat="server" BackColor="Desktop" Font-Bold="True" ForeColor="White"
Height="28px" Style="font-weight: bold; font-size: 15pt; vertical-align: middle;
position: relative; text-align: center" Width="100%"></asp:Label></td>
</tr>
<tr>
<td style="width: 11px">
</td>
<td style="width: 583px">
<asp:GridView ID="GridView_Popup" runat="Server" AutoGenerateColumns="False" BorderColor="Navy"
BorderStyle="Solid" BorderWidth="2px" CellPadding="3" DataKeyNames="ser_no" EmptyDataText="No recored found"
Font-Bold="False" ForeColor="Black" GridLines="Horizontal" HorizontalAlign="Left"
OnRowDataBound="GridView_Popup_RowDataBound" Style="position: relative">
<EmptyDataRowStyle BorderColor="Navy" BorderWidth="2px" />
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:Label ID="lbl_ser_no" runat="server" Font-Size="1pt"
Text='<%# Bind("ser_no") %>' ForeColor="ActiveCaptionText" >
</asp:Label>
</ItemTemplate>
<HeaderStyle BackColor="GradientInactiveCaption" />
<ItemStyle HorizontalAlign="Left" Width="5px" ForeColor="ActiveCaptionText" />
</asp:TemplateField>
<asp:TemplateField HeaderText="Description">
<ItemTemplate>
<asp:Label ID="lbl_description" runat="server" Font-Size="Small" Text='<%# Bind("description") %>'
Width="110px">
</asp:Label>
</ItemTemplate>
<HeaderStyle BackColor="GradientInactiveCaption" Font-Bold="True" Font-Size="Small"
ForeColor="White" HorizontalAlign="Left" />
<ItemStyle HorizontalAlign="Left" VerticalAlign="Top" Width="110px" />
</asp:TemplateField>
<asp:TemplateField HeaderText="Declared Value">
<ItemTemplate>
<asp:TextBox ID="txt_DeclaredValue" runat="server" CausesValidation="True" Font-Size="Small"
Text='<%# Eval("declared_value") %>' ToolTip='<%# Eval("ser_help") %>' Width="205px" MaxLength="50"></asp:TextBox>
</ItemTemplate>
<HeaderStyle BackColor="GradientInactiveCaption" Font-Bold="True" Font-Size="Small"
ForeColor="White" HorizontalAlign="Left" />
<ItemStyle HorizontalAlign="Left" VerticalAlign="Top" Width="205px" />
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:Label ID="lbl_Mandatory" runat="server" Font-Size=".5pt" ForeColor="inactivecaptiontext"
Text='<%# Bind("mandatory") %>' Width="15px"></asp:Label>
</ItemTemplate>
<HeaderStyle BackColor="GradientInactiveCaption" Font-Size="Small" />
<ItemStyle HorizontalAlign="Left" VerticalAlign="Top" Width="15px" />
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:Label ID="lbl_ser_type" runat="server" Font-Size=".5pt" ForeColor="inactivecaptiontext"
Text='<%# Bind("ser_type") %>' Width="15px"></asp:Label>
</ItemTemplate>
<HeaderStyle BackColor="GradientInactiveCaption" />
<ItemStyle HorizontalAlign="Left" VerticalAlign="Top" Width="15px" />
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:RequiredFieldValidator ID="rfv_declaredVal" runat="server" ControlToValidate="txt_DeclaredValue"
ErrorMessage="*" >
</asp:RequiredFieldValidator>
<asp:RegularExpressionValidator ID="rfv_num" runat="server"
ControlToValidate="txt_DeclaredValue" Display="Dynamic" Enabled="false" ErrorMessage="Only (0-9)"
ValidationExpression="^[0-9]*$" Font-Size="10pt" >
</asp:RegularExpressionValidator>
<asp:RegularExpressionValidator ID="rfv_NonNumeric" runat="server" ControlToValidate="txt_DeclaredValue"
Enabled="false" ErrorMessage="Only (a-z/A-Z)" ValidationExpression="^[a-zA-Z'.s]{1,40}$" Font-Size="10pt" >
</asp:RegularExpressionValidator >
<asp:CompareValidator ID="cv_txtDate" runat="server"
ControlToValidate="txt_DeclaredValue" ErrorMessage="dd/MM/yyyy only"
Operator="DataTypeCheck" Type="Date" Font-Size="10pt" >
</asp:CompareValidator>
<asp:RegularExpressionValidator ID="rev_Decimal" runat="server" ErrorMessage="Only Decimal"
ControlToValidate="txt_DeclaredValue" Style="position: relative" Font-Size="10pt"
ValidationExpression="(?!^0*$)(?!^0*.0*$)^d{1,18}(.d{1,2})?$" />
</ItemTemplate>
<HeaderStyle BackColor="GradientInactiveCaption" />
<ItemStyle HorizontalAlign="Left" VerticalAlign="Top" />
</asp:TemplateField>
</Columns>
<HeaderStyle BorderColor="Navy" BorderStyle="Solid" BorderWidth="1px" ForeColor="#0000C0"
Height="25px" HorizontalAlign="Left" VerticalAlign="Middle" />
</asp:GridView>
</td>
<td style="width: 10px">
</td>
</tr>
<tr>
<td style="width: 11px; height: 26px">
</td>
<td style="width: 583px; height: 26px">
<table style="left: 0px; width: 100%; position: relative; top: 0px">
<tr>
<td style="width: 63px; height: 26px">
<asp:Button ID="btnSubmit" runat="server" Style="left: 0px;
position: relative; top: 0px" Text="Submit" OnClick="btnSubmit_Click1" />
</td>
<td style="width: 100px; height: 26px">
<asp:Button ID="btnRemindLater" runat="server" OnClientClick="winclose()"
Style="left: 0px; position: relative" Text="Remind Me Later" UseSubmitBehavior="False"
Width="120px" />
</td>
<td style="vertical-align: middle; width: 304px; height: 26px; text-align: right">
<asp:Label ID="lbl_LastDatePopup" runat="server" Font-Bold="False" Font-Size="Small"
ForeColor="Red" Style="position: relative" Width="100%"></asp:Label></td>
</tr>
</table>
<asp:Label ID="Label1" runat="server" BackColor="InactiveCaptionText" Style="position: relative">
</asp:Label><asp:ValidationSummary ID="ValidationSummary1" runat="server" HeaderText="Please correct the mandatory fields labeled with * "
Height="1px" ShowMessageBox="True" ShowSummary="False" Style="position: relative" />
</td>
<td style="width: 10px; height: 26px">
</td>
</tr>
</table>
<br />
</asp:Panel>
</div>
</div>
</form>

View 4 Replies

Forms Data Controls :: Validating DropdownList "contains Data" Inside Gridview Using Javascript

Sep 9, 2010

I have Gridview with Dropdownlist which contains data as {select,1,2,3} .Gridview contains multiple rows of data.Submit button is also on form but outside gridview. If any of the rows of gridview dropdownlist contain value as "Select" and click Submit button ,give message as "Please select value". I want to do this stuff using javascript.

View 8 Replies

Web Forms :: Generate Controls Based On Xml

May 22, 2010

I have to create ASP.NET controls dynamically based on an xml schema/ file. For example I have following file:

<?xml version="1.0" encoding="utf-8" ?>
<Fields>
<Field ID="Firstname" Name="Firstname" LocID="_Firstname" Type="String" MappingControl="Textbox"></Field>
<Field ID="Lastname" Name="Lastname" LocID="_Lastname" Type="String" MappingControl="Textbox">
<Validations>
<Validation Type="Length" MaxValue="10" MinValue="0" WarningMessage="_WarningTextLength"></Validation>
</Validations>
</Field>
</Fields>

Based on this I want to create controls on the page dynamically. I think it is a bit like the ASP.NET Dynamic data project, but I have no Entity Framework or Linq to SQL Context available. Of cause: I can write my own XML parser and page generator but I don't want to reinvent the wheel again. Do you maybe created a similar project or know some good source that uses the same approach?

View 3 Replies

Web Forms :: Showing Controls Based On Selection?

Sep 29, 2010

I am building a application with some forms. The layout was delivered to me in HTML page and I am rebuilding it now to ASPX pages. One page has two radiobutton boxes from which a user can choose one option (of one of the radiobuttonlists). Based on that selection a third redaiobuttonbox shows up at the right of the page with another selection choice. When the third radiobutton is selected a new page is loaded in a iframe (in the original page) with a control (textbox, button or some textfields). What exactly should be loaded is based on the selection of the third radiobutton. Now I wanted to know if it would be possible to do this all in one page, for example can i make a panel that could be dynamically filled with the right controls?

View 2 Replies

Forms Data Controls :: Update Field Based On Value In Another?

Apr 9, 2010

In GridView (using VB) , I have project information, with Status and %Complete that the user is supposed to update. Trouble is they may change %Complete to 100%, but not change the status from Active to Complete. So, we wind up with a long list of Active tasks that are 100% Complete. How can I force an update to the Status field ? something like... If "%Complete" = "100" Else Status = "Complete" Not sure if I need to do this in VBscript or code behind or SQL or.

View 2 Replies

Forms Data Controls :: Colorcoding A GridView Row Based On Value?

Apr 27, 2010

Is there an easy way to color-code a GridView row based on whether a value in the assigne Datasource is above or below a fixed amount?

View 6 Replies

Web Forms :: How To Create Controls Dynamically Based On User Input

Apr 20, 2010

could u tell me add controls to a page base on user inputs,

i know the basic of creating a button dynamically but here I have to to add few controls based on user input and how to identify event for each dynamically create control.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved