Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Tags
Member Avatar for Antpit

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 = …

Member Avatar for Antpit
0
649
Member Avatar for Antpit

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 …

Member Avatar for Antpit
0
350
Member Avatar for Antpit

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] …

0
61
Member Avatar for Antpit

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 …

0
54