Forms Data Controls :: Setting Defaultfocus On A Textbox In Formview?

Apr 30, 2010

I need to set the defaulfocus for a webpage that will be used for scanned input.

The page needs to start with focus on a textbox in a formview and remain there as each item is scanned. I have already setup the default button to update data on enter which will happen as each item is scanned. There is only one text box and the update button in the formview.

View 3 Replies


Similar Messages:

Forms Data Controls :: Set Value To Textbox In Nested Formview From Parent Formview Label?

Apr 10, 2010

I have a nested formview. I need to set a value for a textbox when I'm in insert mode from parent formview which is editmode.

View 4 Replies

Forms Data Controls :: Dropdownlist Setting Selectedvalue From Formview

Mar 11, 2011

I'm populating a dropdownlist in a formview with a different datasource from the formview's. I need to set the selected value according to the value in the formview's datasource but I'm having a hard time doing that.

Here's the code:
<asp:FormView ID="FormView1" runat="server" DataKeyNames="ID"
DataSourceID="SqlDataSource1">
<EditItemTemplate> [code]....

View 2 Replies

Forms Data Controls :: Setting An Insert Parameter Programatically In Formview?

Mar 21, 2010

I have a formview bound to a sqldatasource control. I want to set one of the insert parameters when I click on one of several buttons (outside the formview).

In my sqlDS I have:

<InsertParameters>
<asp:Parameter
Name="benType"
Type="byte"
/>
<asp:Parameter
Name="benName"
Type="String"
/>
<asp:Parameter
Name="benDesc"
Type="String"
/>
</InsertParameters>

I want to set the "benType" depending on which button I've pressed (I don't want/need it to be visible in the InsertTemplate). I tried adding this line to the codebehind for the button click:

formview1.ChangeMode(FormViewMode.Insert)
formview1_datasource.InsertParameters(0).DefaultValue = 2

This doesn't work...what is the best way to set the insertParameter from outside the formview?

View 6 Replies

Forms Data Controls :: Unable To Set Value Of TextBox In FormView?

Sep 18, 2010

I need to set the value of TextBox in a FormView when the mode changes to Insert. But when I was trying to get it to work, neither one of the code blocks below worked. The value was not set, despite the TextBox being found. Furthermore, the 'test' label text wasn't being set. I know for certain that both events are firing. I had added the test label to disploay the mode or newmode of the FormView but the label wasn't being set at all.

[Code]....

View 3 Replies

Forms Data Controls :: Multiline Textbox To Label In Formview?

Feb 22, 2010

I have a formview containing an insert template. One of the fields you can insert is a multiline textbox. When i update or insert, i write the value to an SQL database. The next time i edit the record, everything shows up in the multiline textbox as it was when i inserted it. This includes the newlines(or break rules, or whatever you call it in english) i've entered.

For my itemtemplate, i want to use a label to represent this value. But when i do so, it doesn't use newlines, it just puts the text in one line.

How does the multiline textbox save these 'new lines' to the database? and how can i retrieve them when using a label?

View 5 Replies

Forms Data Controls :: VB Page Textbox Which Is In The Formview Is Not Picking Up?

Sep 21, 2010

I am using a form view to update details off activities, i have used the asp.net wizard to update the activities but for some reason in my VB page my textbox which is in the formview is not picking up.

[code]...

Basically what I am trying to write is: How can I rewrite this statement so that the textbox and the dropdownlist is recognised in the vb page?

View 6 Replies

Forms Data Controls :: Check A Textbox Has Changed In A Formview?

Nov 3, 2010

How do I check if a textbox in a formview has changed when I click "Update" (in Edit mode)? TIA. I use VS2008 and Framework 3.5.

View 2 Replies

Forms Data Controls :: Assign Gridview Datakey To Formview Textbox?

Jan 31, 2010

I have a gridview table and i need to select one record and insert the Datakey of the selected record to a formview textbox control. I'm completely lost...

View 13 Replies

Forms Data Controls :: Change Textbox To Proper Case Using Formview?

Feb 23, 2011

I have a Formview where students put their information in such as name, address, etc. The text boxes are bound to my database, so once they are done, they choose to update, and my database is updated with their information. My problem is that the students often use All Caps to enter in their information.

I think I need the StrConv somehow, but I just can't seem to get this done. I've seen where it could be done with text boxes, but not when they were in a Formview using parameters.

View 2 Replies

Forms Data Controls :: How To Insert A Space In A Textbox Inside A Formview

Mar 24, 2010

I'm using this:

[Code]....

Is there a better way to do it?

View 13 Replies

Forms Data Controls :: Textchange Event Not Working From Textbox On Formview

Oct 6, 2010

I have a formview which in insertmode is required to assign a value to a textbox from another on textchange event. I can't get it working. here's formview code (in bold: event call:

<asp:FormView ID="fvPrecios" runat="server" AllowPaging="True" DataSourceID="OdsPrecios"
Style="position: relative" CellPadding="4" ForeColor="#333333"
DataKeyNames="precnume" >
<EditItemTemplate>
<table style="position: relative" width="400">
<tr>
<td style="width: 62px; height: 26px">
<asp:Label ID="lblEditNombre" runat="server" Text="Nombre"></asp:Label>
</td>
<td style="width: 312px; height: 26px">
<asp:TextBox ID="txtEditNombre" runat="server" Text='<%# Bind("precnomb") %>'></asp:TextBox>
</td>
<td style="width: 2256px; height: 26px">
<asp:Label ID="lblEditPlan" runat="server" Text="Plan"></asp:Label>
</td>
<td style="width: 188px; height: 26px">
<asp:ObjectDataSource ID="odsPlanItem" runat="server" SelectMethod="GetPlanes"
TypeName="Facturacion.DAL.PlanDataLayer"></asp:ObjectDataSource>
<asp:DropDownList ID="ddlPlanEdit" runat="server" DataSourceID="odsPlanItem"
DataTextField="plannomb" DataValueField="plannume"
SelectedValue='<%# Bind("plannume") %>'>
</asp:DropDownList>
</td>
</tr>
<tr>
<td style="width: 62px; height: 21px">
<asp:Label ID="lblEditBasico" runat="server" Text="Basico"></asp:Label>
</td>
<td style="width: 312px; height: 21px">
<asp:TextBox ID="txtEditBasico" runat="server" Text='<%# Bind("precbasi") %>'
ontextchanged="txtNewBasico_TextChanged"></asp:TextBox>
</td>
<td style="width: 2256px; height: 21px">
<asp:Label ID="lblEditRecargo" runat="server" Text="Recargo"></asp:Label>
</td>
<td style="width: 188px; height: 21px">
<asp:TextBox ID="txtEditRecargo" runat="server" Text='<%# Bind("precreca") %>'></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 62px">
<asp:Label ID="lblEditTotal" runat="server" Text="Total"></asp:Label>
</td>
<td style="width: 312px">
<asp:UpdatePanel ID="UpTotal" runat="server">
<ContentTemplate>
<asp:TextBox ID="txtEditTotal" runat="server" Text='<%# Bind("prectota") %>'
ReadOnly="True"></asp:TextBox>
</ContentTemplate>
</asp:UpdatePanel>
</td>
<td style="width: 2256px">
<asp:Label ID="lblEditInicial" runat="server" Text="Inicial"></asp:Label>
</td>
<td style="width: 188px">
<asp:TextBox ID="txtEditInicial" runat="server" Text='<%# Bind("precinic") %>'></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 62px">
<asp:Label ID="lblEditSaldo" runat="server" Text="Saldo"></asp:Label>
</td>
<td style="width: 312px">
<asp:TextBox ID="txtEditSaldo" runat="server" Text='<%# Bind("precsald") %>'></asp:TextBox>
</td>
<td style="width: 2256px">
<asp:Label ID="lblEditCuota" runat="server" Text="Cuota"></asp:Label>
</td>
<td style="width: 188px">
<asp:TextBox ID="txtEditCuota" runat="server" Text='<%# Bind("preccuot") %>'></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 62px">
<asp:Label ID="lblEditConsignado" runat="server" Text="Consignado"></asp:Label>
</td>
<td style="width: 312px">
<asp:TextBox ID="txtEditConsignado" runat="server"
Text='<%# Bind("preccons") %>'></asp:TextBox>
</td>
<td style="width: 2256px">
<asp:Label ID="lblEditRetenido" runat="server" Text="Retenido"></asp:Label>
</td>
<td style="width: 188px">
<asp:TextBox ID="txtEditRetenido" runat="server" Text='<%# Bind("precrete") %>'></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 62px">
<asp:Label ID="lblEditComision" runat="server" Text="Comision"></asp:Label>
</td>
<td style="width: 312px">
<asp:TextBox ID="txtEditComision" runat="server" Text='<%# Bind("preccomi") %>'></asp:TextBox>
</td>
<td style="width: 2256px">
<asp:Label ID="lblEditActivo" runat="server" Text="Activo"></asp:Label>
</td>
<td style="width: 188px">
<asp:RadioButtonList ID="rblactivo" runat="server" RepeatDirection="Horizontal"
SelectedValue='<%# Bind("precacti") %>'>
<asp:ListItem Value="S">Si</asp:ListItem>
<asp:ListItem Value="N">No</asp:ListItem>
</asp:RadioButtonList>
</td>
</tr>
<tr>
<td style="width: 62px">
</td>
<td style="width: 312px">
</td>
<td style="width: 2256px">
</td>
<td style="width: 188px">
</td>
</tr>
<tr>
<td align="center" colspan="4">
<asp:Button ID="btnInsertar" runat="server" CommandName="Update"
Text="Guardar" />
<asp:Button ID="btnCancel" runat="server" CommandName="Cancel" Text="Cancel" />
</td>
</tr>
<tr>
<td style="width: 62px">
</td>
<td style="width: 312px">
</td>
<td style="width: 2256px">
</td>
<td style="width: 188px">
</td>
</tr>
</table>
</EditItemTemplate>
<PagerTemplate>
<asp:LinkButton ID="btnFirst" runat="server" CommandName="Page" CommandArgument="First">Primera</asp:LinkButton>
<asp:LinkButton ID="btnPrev" runat="server" CommandName="Page" CommandArgument="Prev">Anterior</asp:LinkButton>
Pagina:<%#fvPrecios.PageIndex &#43; 1%>
<asp:LinkButton ID="btnNext" runat="server" CommandName="Page" CommandArgument="Next">Siguiente</asp:LinkButton>
<asp:LinkButton ID="btnLast" runat="server" CommandName="Page" CommandArgument="Next">Ultima</asp:LinkButton>
</PagerTemplate>
<InsertItemTemplate>
<table style="position: relative" width="400">
<tr>
<td style="width: 62px; height: 26px">
<asp:Label ID="lblNewNombre" runat="server" Text="Nombre"></asp:Label>
</td>
<td style="width: 312px; height: 26px">
<asp:TextBox ID="txtNewNombre" runat="server" Text='<%# Bind("precnomb") %>'></asp:TextBox>
</td>
<td style="width: 2256px; height: 26px">
<asp:Label ID="lblNewPlan" runat="server" Text="Plan"></asp:Label>
</td>
<td style="width: 188px; height: 26px">
<asp:DropDownList ID="DdPlan" runat="server" DataSourceID="OdsPlan"
DataTextField="plannomb" DataValueField="plannume" SelectedIndex='<%# Bind("plannume") %>'
SelectedValue='<%# Bind("plannume") %>' Font-Size="Small">
</asp:DropDownList>
<asp:ObjectDataSource ID="OdsPlan" runat="server" SelectMethod="GetPlanes"
TypeName="Facturacion.DAL.PlanDataLayer" InsertMethod="Insert"
OldValuesParameterFormatString="original_{0}">
<InsertParameters>
<asp:Parameter Name="plannomb" Type="String" />
</InsertParameters>
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td style="width: 62px; height: 21px">
<asp:Label ID="lblNewBasico" runat="server" Text="Basico"></asp:Label>
</td>
<td style="width: 312px; height: 21px">
<asp:TextBox ID="txtNewBasico" runat="server" Text='<%# Bind("precbasi") %>'
OnTextChanged="txtNewBasico_TextChanged"></asp:TextBox>
<ajaxToolkit:MaskedEditExtender runat="server" ID="txtNewBasico_MaskedEditExtender" TargetControlID="txtNewBasico"
Mask="9'999,999"
MessageValidatorTip="true"
OnFocusCssClass="MaskedEditFocus"
OnInvalidCssClass="MaskedEditError"
MaskType="Number"
InputDirection="RightToLeft"
ErrorTooltipEnabled="True">
</ajaxToolkit:MaskedEditExtender>
</td>
<td style="width: 2256px; height: 21px">
<asp:Label ID="lblNewRecargo" runat="server" Text="Recargo"></asp:Label>
</td>
<td style="width: 188px; height: 21px">
<asp:TextBox ID="txtNewRecargo" runat="server" Text='<%# Bind("precreca") %>' ></asp:TextBox>
<ajaxToolkit:MaskedEditExtender runat="server" ID="MaskedEditExtender1" TargetControlID="txtNewRecargo"
Mask="9'999,999"
MessageValidatorTip="true"
OnFocusCssClass="MaskedEditFocus"
OnInvalidCssClass="MaskedEditError"
MaskType="Number"
InputDirection="RightToLeft"
ErrorTooltipEnabled="True">
</ajaxToolkit:MaskedEditExtender>
</td>
</tr>
<tr>
<td style="width: 62px">
<asp:Label ID="lblNewTotal" runat="server" Text="Total"></asp:Label>
</td>
<td style="width: 312px">
<asp:UpdatePanel ID="UpdTotal" runat="server">
<ContentTemplate>
<asp:TextBox ID="txtNewTotal" runat="server" Text='<%# Bind("prectota") %>'></asp:TextBox>
</ContentTemplate>
</asp:UpdatePanel>
</td>
<td style="width: 2256px">
<asp:Label ID="lblNewInicial" runat="server" Text="Inicial"></asp:Label>
</td>
<td style="width: 188px">
<asp:TextBox ID="txtInicial" runat="server" Text='<%# Bind("precinic") %>'></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 62px">
<asp:Label ID="lblNewSaldo" runat="server" Text="Saldo"></asp:Label>
</td>
<td style="width: 312px">
<asp:TextBox ID="txtNewSaldo" runat="server" Text='<%# Bind("precsald") %>'></asp:TextBox>
</td>
<td style="width: 2256px">
<asp:Label ID="lblNewCuota" runat="server" Text="Cuota"></asp:Label>
</td>
<td style="width: 188px">
<asp:TextBox ID="txtCuota" runat="server" Text='<%# Bind("preccuot") %>'></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 62px">
<asp:Label ID="lblNewConsignado" runat="server" Text="Consignado"></asp:Label>
</td>
<td style="width: 312px">
<asp:TextBox ID="txtNewConsignado" runat="server"
Text='<%# Bind("preccons") %>'></asp:TextBox>
</td>
<td style="width: 2256px">
<asp:Label ID="lblNewRetenido" runat="server" Text="Retenido"></asp:Label>
</td>
<td style="width: 188px">
<asp:TextBox ID="txtNewRetenido" runat="server" Text='<%# Bind("precrete") %>'></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 62px">
<asp:Label ID="lblNewComision" runat="server" Text="Comision"></asp:Label>
</td>
<td style="width: 312px">
<asp:TextBox ID="txtNewComision" runat="server" Text='<%# Bind("preccomi") %>'></asp:TextBox>
</td>
<td style="width: 2256px">
</td>
<td style="width: 188px">
</td>
</tr>
<tr>
<td style="width: 62px">
</td>
<td style="width: 312px">
</td>
<td style="width: 2256px">
</td>
<td style="width: 188px">
</td>
</tr>
<tr>
<td align="center" colspan="4">
<asp:Button ID="btnInsertar" runat="server" CommandName="Insert"
Text="Guardar" />
<asp:Button ID="btnCancel" runat="server" CommandName="Cancel" Text="Cancel" />
</td>
</tr>
<tr>
<td style="width: 62px">
</td>
<td style="width: 312px">
</td>
<td style="width: 2256px">
</td>
<td style="width: 188px">
</td>
</tr>
</table>
</InsertItemTemplate>
now codebehind:
protected void Page_Load(object sender, EventArgs e)
{
}
protected void txtNewBasico_TextChanged(object sender, EventArgs e)
{
if(fvPrecios.CurrentMode == FormViewMode.Insert)
TextBox txtTotal = (TextBox)fvPrecios.Row.FindControl("txtNewTotal");
TextBox txtBasico = (TextBox)fvPrecios.Row.FindControl("txtNewBasico");
TextBox txtRecargo = (TextBox)fvPrecios.Row.FindControl("txtNewRecargo");
txtTotal.Text = "hola";
}

View 3 Replies

Forms Data Controls :: Date Selection Is Not Displaying In Textbox Of FormView?

May 3, 2010

Here my question is very simple. That what I want to do is to select a date using asp.net calender control and insert into textbox. Both the controls are in the InsertItemTemplate of the FormView.

1. Page1.aspx has a textbox and an image for calender.

2. Calendar.aspx is to select any date and with the help of session it should go back to its parent page in the text box and dispose itself.

Achievement:1. From Page1.aspx when i click Calender image, perfectly a new page Calendar.aspx opens.

2. On Calendar.aspx page, date selection is also OK.

3. Using Session, the date is perfectly transfering to next page.

Problem: 1. When I select date from Calendar.aspx it is not transfering back to Page1
in textbox.

2. Secondly when I select date from Calendar.aspx it is not disposing itself after date selection.

View 43 Replies

Forms Data Controls :: Using Textbox As Input To Populate A Formview Control?

Apr 20, 2010

I am using a textbox and button to get the user input (account number), this will be used as input to a data access class object (SQL) when the button is clicked. This action should populate the Formview control. I have bound the Formview control to the SQLdatasource and configured the SQLdatasource control to the textbox.TEXT property. What am I missing? What do I need to add to button_clicked event to get all this to work? One other thing, the textbox is in a table area separate from the formview control. I have each of the templates inside of the formview control in tables. The input textbox and button are displayed but the formview control is not, all of this is in a master/detail object.

View 6 Replies

Forms Data Controls :: Preset Textbox.Text Of A Formview On InsertMode

Jan 9, 2010

I want to preset the value of a textbox within a databound formview. Tried it within codebehind on onModeChanging and onItemInserting. Method onModeChanging was fired but the textbox.text shows not the expected text. Method onItemInserting was not fired at all.

Thought to use inlinecode like

<asp:TextBox ID="txt_CREATOR" runat="server" CssClass="txtTask" Text="<%=giSessionHandling.UserName %>"/>

in the aspx but don't know how to ...

<asp:FormView
ID="frmViewDetail"
runat="server"
DataSourceID="dsrcDetail"
DataKeyNames="TASK_ID"

[Code]....

View 3 Replies

Forms Data Controls :: Show / Hide Textbox In Formview Based On A Dropdown?

Sep 29, 2010

I have a textbox in a formview as well as a dropdown. When I select a value in the dropdown, the textbox should be made visible or invisible based on the value I select.

View 3 Replies

Forms Data Controls :: How To Populate A Textbox Inside FormView From Drop-down List

Dec 21, 2010

I have a drop-down list that is wired up to a datasource from one table to retrieve a Vendor ID and Vendor Name. This ddl is outside a FormView that is wired up to a datasource containing Vendor contracts.

When I choose a Vendor from the ddl, I am able to populate a textbox outside of FormView with the Vendor ID from the ddl. However, what I need to do is populate a textbox within FormView with the Vendor ID. FormView is in Insert Mode by default since my page will be used for Adding Contracts only.

View 4 Replies

Forms Data Controls :: How To Change A Textbox To Dropdownlist In Formview Insert Mode

Jan 5, 2010

I created a formview that I am using for data input (DefaultMode=Insert)

One of the objects I have is a text box (see below)

[code]....

When I click submit I get a message that I cannot insert a Null into the field IntershipNumAvailable. This makes sense since I made this field a required field in the database.

How do I get the form to recognize that the user selected item is the one I want to write to the database?

What changes do I need to make here? Do I need to make changes to my parameter list?

View 4 Replies

Forms Data Controls :: Populate A Textbox With The Contents Of A Formview (or Even A Single Field)?

Jun 24, 2010

I have an email contact form that I have successfully populated the account users Username and email address into text boxes

I also use a text box and session variables to send parameters to a stored procedure and return a single row result in a form view.

The thing I am having an incredibly hard time figuring out is how to populate a single textbox with the data from any of those fields. or the whole control as a single summary.

Just for starters I am actually an IT Manager and NOT a coder so this is entirely a hack job if there ever was one...

here is my aspx code

<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/RMSWeb.master" CodeFile="Service2.aspx.cs" Inherits="_Default" %>

View 1 Replies

Forms Data Controls :: Validate TextBox Length And Prevent From Inserting In FormView (VB)?

Apr 20, 2010

I am trying to add a validation of the textbox.text.length in a FormView and prevent the insertion of being made in case the text length is not compliant (less than four characters).

In the scenario when clicking the submit button an Alert should appear with xxxx warinig text. and the Insert command being prevented.

This is my FormView Insert Template:

[Code]....

View 5 Replies

Forms Data Controls :: DataGrid - Setting Focus After A TextBox TextChanged() Event?

Oct 27, 2010

Asp.NET v2.0

Data grid with mulitple texboxes per row.

Each textbox has a TextChange() event wired up for data validation.

These events fire just fine, the data validation works just fine.

My issue is this: User enters text into TextBox1 one then tabs into TextBox2. The cursor appears for a split second inside of TextBox2 then disappears as focus is being set somewhere else on the page. I'm not sure how that change of focus is happening.

In this scenario, after tabbing out of TextBox1, how can I maintain focus on TextBox2 (and then subsequently TextBox3, TextBox4,etc..)

View 5 Replies

Forms Data Controls :: Populate Textbox In FormView Control In Edit Mode With Querystring?

Sep 9, 2010

I am simply trying to get a querystring value and pass it to a textbox in a formview with the default view set to edit mode.

Protected Sub fv_Detach_Engine_DataBound(ByVal sender As Object, ByVal e As EventArgs) Handles fv_Detach_Engine.DataBound
If fv_Detach_Engine.CurrentMode = FormViewMode.Edit Then
Dim tbx_IDProfileAccount As TextBox = TryCast(fv_Detach_Engine.FindControl("tbx_IDProfileAccount"), TextBox)
If tbx_IDProfileAccount Is Nothing Then
tbx_IDProfileAccount.Text = Request.QueryString("IDProfileAccount")
End If
End If
End Sub

View 3 Replies

Forms Data Controls :: Automatically Updating Check Box And Date TextBox In FormView To Access?

Aug 3, 2010

I have an access database where when the record is updated I would like to automatically check a box and update the date to the current date in an Access 2002-2003 database. I've tried this for several days without any resolution and can't find anything that works on the net. ...I'm new at this.

I'm using VWD 2005 Express and Expressions Web 3.

Here is a short version of the code.

[Code]....

View 5 Replies

Forms Data Controls :: Handling A Null Value In Textbox FormView (on Button Click To Calculate Totals)

Mar 17, 2011

I have a rather large formview that asks for a variety of input values (physical totals vs pos report totals). I have created vb code to calculate the differences and subtotals of various types prior to inserting the data so people can check for entry errors.

Its a closing reconciliation form. Here's the problem: If they forget to enter 0 in a field that doesn't have any totals, a big ugly error message displays. I would like to avoid this. I can tell them until I am blue in the face to remember to enter 0 and not leave any blank fields, but realistically its going to happen and I need to handle it in the programming.

I have been struggling to either default the values to zero to start with, replace a null textbox with 0 before the calculate runs...but I can't get anything to really work. What is the best way to handle this?

Here is the aspx page:

[Code]....

And the code behind page with working "Calculate" as long as fields are not left blank (I took out all the test code that made it not work at all)

[Code]....

Finally, the error message I am getting is the following:

[Code]....

I can't seem to find the right combination of programming to account for the "" string to be 0 so that it will add or subtract values in my calculate. I have my sql table setup with default values of 0 so if a field is left blank it will be entered into the database as 0 and not null. It is really just for my inserting of a reconciliation and the running of Calculate Totals to double check their work prior to inserting into the database.

View 1 Replies

Forms Data Controls :: Accessing Master Formview Data From A Nested Detail Formview?

Sep 10, 2010

I would like to ask if it is possible to access data on a master FormView from a nested detail FormView.

I have a main form (master) with several tabs (detail) and would like to display a label with text from main form that is hidden by the tab at the moment of editting. My asp page looks like this.

[Code]....

Is it possible to get the value of the label CompanyTextLabel from CompanyTextBox using just ASP.NET expressions or something similar without writing c# code in .cs file?

View 4 Replies







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