11 Topics

Member Avatar for
Member Avatar for Yousha

Plz Help me I'm creating a form-View in asp.net 2010 and successfully upload all my data on the Form View but my problem arise when i edit the data in the form, it does not update the data. Following is my code. <%@ Page Title="" Language="VB" MasterPageFile="~/Site.master" AutoEventWireup="false" CodeFile="Default2.aspx.vb" Inherits="Default2" …

Member Avatar for ryan.ally2
0
389
Member Avatar for nered

I have a FormView that has a datasource bind as a object which is a WCF service. In the WCF Service i have a Object PublicationDetail which has a attribute List<string> authors; I want to join the contents of the list and print them out in the form view however …

Member Avatar for nered
0
150
Member Avatar for geossl

Dear All, In a webform asp.net 3.5 page, there is a FormView with Insert, Edit template. In the Insert template, there is an insert button. How can I **prevent multiple insert button click** (prevent multiple records) ? By disabling the insert button after the first click? How to achieve this?

Member Avatar for kvprajapati
0
99
Member Avatar for Begginnerdev

Hello my fellow Daniwebers, I have a question for you. I have quite an odd problem that I have researched and have not been able to find a solution. I have a formview, named frmStatus, from which I am trying to retrieve controls to check for values. The form is …

Member Avatar for Begginnerdev
0
167
Member Avatar for mrar85

i have a formview which show the data from a database.. in another page, i have a datalist that also display data from the database.. in the datalist, i have a hyperlink that when click will navigate to the page that have the formview which display data that suppose to …

Member Avatar for mrar85
0
134
Member Avatar for mrjimoy_05

How can I replace the text of a label control contained in a formview? I've tried to use the code below: [CODE]Protected Sub FormViewNews_DataBound(sender As Object, e As System.EventArgs) Handles FormViewNews.DataBound Dim pagerRow As FormViewRow = FormViewNews.BottomPagerRow Dim Active As Label = CType(pagerRow.Cells(2).FindControl("OFMLabel"), Label) If Active = "False" Then Active …

Member Avatar for crishlay
0
157
Member Avatar for bg1976

Hi I have a Formview that allows a user to update any combination of 80+ fields. I need a formView so that I have control over the position of the fields on the page. Regads updating, my idea was to get the NewValues (from FormViewUpdateEventArgs), then create an xml string …

Member Avatar for bg1976
0
101
Member Avatar for pj1981

Hi, I am working on a project for work that requires the <%# Now() %> function output to be inserted into a text box field that passes it's value to an Access 2007 DB with the rest of the form data on submission. I am able to either make the …

Member Avatar for abelLazm
0
132
Member Avatar for Joe318

Hi, I'm joining 2 tables and using the formview. When I insert a record, I need to place the value of the max id + 1 of the second table in a field in the first table so that the tables are linked. I'm not sure where to put the …

0
109
Member Avatar for Jagfarrell

HI all, Normally I've been lucky to find someone who has had the same problem and applied their solution but after hours of searching I'm not able to find a solution to this one. I've got a FormView which is default mode set to Insert. When the page is loading …

Member Avatar for Jagfarrell
0
149
Member Avatar for Ana D.

Hi, I have the following code: [CODE=ASP.NET]<asp:FormView ID="myFormView" runat="server" SkinID="DetailsFormview"> <ItemTemplate> <table width="400"> <tr> <td align="right"> <b>This is the label: </b> </td> <td align="left"> <asp:Label ID="myLabel" Text="Label Text" runat="server" /> </td> </tr> </table> </ItemTemplate> </asp:FormView>[/CODE] And in the code behind (VB.NET): [CODE=VB.NET]Protected Sub BindFormView() Dim myLabel As Label = myFormView.FindControl("myLabel") …

Member Avatar for Ramesh S
-1
877

The End.