No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
I'm trying to simply get the value of a FormView control IDLabel1 that is placed within a div IDLabel1 is a bound control getting data from a database via an sqldatasource control I've tried the following: FormView1.FindControl("IDLabel1") CType(FormView1.FindControl("IDLabel1"),Label) Dim lbl As Label = DirectCast(FindControl("IDLabel1"), Label) Dim lbl As Label = … | |
Hi I have the following code that uploads images and other files to an SQL Server DB on GoDaddy via a FileUpload Control on an aspx page. Public Function InsertData(ByVal cmd As SqlCommand) As Boolean Dim strConnString As String = System.Configuration.ConfigurationManager.ConnectionStrings("ConnectionString").ConnectionString Dim con As New SqlConnection(strConnString) cmd.CommandType = CommandType.Text cmd.Connection … | |
Hi I have a Formview control on an aspx page. I want to display labels to say something like record 1 of 5 and total number of records found. Here is the code (from the MSDN Site) that does not raise any errors but the labels stay blank. Thanks [CODE] … | |
Hi I've got a 2 col drop down list that gets its values from an SQL Server DB Table called List. The field that the drop down list uses is called SurName this would only display the surname for each record in ascending order. I have now extended the drop … |
The End.