Hi, You can use FindControl to get the value from dynamically created controls.
Best Regards
Jay
Hi, You can use FindControl to get the value from dynamically created controls.
Best Regards
Jay
Hi, I need to access the property of UserControl inside the App_Code (Common Function or modules) in ASP.NET(VB). Did any one have any idea about this?
Best Regards
Jay
I am in need of generate the XML file using XML schema with VB.net. Can any one give me the sample code for do this?
Best Regards
you can set display property to "none" for hide the div & "block" for show the div. (Don't use Visiblity.)
Best Regards
i) In imagebutton click event you can show the div ii) In calender control, after selecting the date you can close the div. iii) Otherwise keep another image button for closing the div
Warm Regards
how to retrieve the web server name using asp.net(VB)?
Best Regards
After Binding the data into the grid we have use this code: Dim row As GridViewRow Dim i As Integer 'Delete Customers from grid i = 0 For Each row In gdvUsers.Rows If (row.Cells(4).Text = "") Then gdvUsers.DeleteRow(i) End If i = i + 1 Next
And include this row deleting event: Protected Sub gdvUsers_RowDeleting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewDeleteEventArgs) Handles gdvUsers.RowDeleting gdvUsers.Rows.Item(e.RowIndex).Visible = False End Sub
Best Regards
JaySaran
You have to give the change text in header before BindGridView(). if(!IsPostBack) { GridView1.Columns[0].HeaderText = "Bla Bla"; BindGridView(); }
Best Regards
Try this. I think this is exact one "\d{0,16}(\.\d{1,2})?"
Best Regards
Grid is treated like a table Example: function fngetvalue() { varTbody=document.getElementById('GRID_ID').childNodes[0] td=varTbody.getElementsByTagName("TD") tgname=varTbody.getElementsByTagName("INPUT") for(i=0;iBest Regards