It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
What does the following line of code do
SqlDataSource DataSource =(SqlDataSource)CreateUserWizardStep1.
ContentTemplateContainer.FindControl("InsertExtraInfo");
MSDN can tell you:
http://msdn.microsoft.com/en-us/library/system.web.ui.control.findcontrol.aspx
It will find the control that is a child of ContentTemplateContainer, with the ID of InsertExtraInfo, and then cast it to SqlDataSource.
It simply says: "It uses FindControl to get the SqlDataSource then bind it to CreateUserWizard".
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am new for this so that asking these questions..
How can I generate a Dynamic Template field in Asp.net with C#?
You can use DynamicallyTemplatedGridViewHandler implementing ITemplate interface.....For details, have a look here
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
how can I fill datagrid from datatable c# wpf?
Have you tried any code yet? If so best post a few snippets, and be specific about the problem's you're encountering.
If you haven't started yet I'd recommend googling/bingin' for such a question. There are plenty of tutorials, for example on codeplex:
http://www.codeproject.com/KB/WPF/WPFDataGridExamples.aspx
Good luck!
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Hey guys, can anyone tell me about Treeview in C# 2008. How to bind it with an Sql Database?
Check this Example and this downloadble one with Databinding
Tree View MSDN article: http://msdn.microsoft.com/en-us/library/d4fz6xk2%28v=vs.80%29.aspx
this is a tree example but databinding with Access.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
As the titles says. What is a dependent property in silverlight/wpf.
There is no such thing in C#. I guess you are talking about dependency properties, which are a WPF concept. See Dependent properties and MSDN.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Hai,
Am using DevExpress Tree List in C#.NET application .I want to add checkbox control in DevExpress XtraTree List.Please help
Thank you.
You should set the column's ColumnEdit property to an instance of the RepositoryItemCheckEdit class. For more details, please refer to
http://documentation.devexpress.com/#WindowsForms/CustomDocument5632
http://documentation.devexpress.com/#WindowsForms/CustomDocument5633