- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
20 Posted Topics
SELECT ID FROM IdentityDocuments
Void in java means that no value will be returned. If your method is of type int, that method will return an integer value... if your method is of type string, that method will return a string value... but a void method will return nothing.
what are the benefits of using a multiview?
what are the advantages of using radio button lists and checkbox lists instead of individual radio buttons and checkboxes?
int position = ListBox1.SelectedIndex; if(position >= 0) { ListBox1.Items.RemoveAt(position); } else { //output message asking the user to select an item from the list }
You first create an object link to the data class : cData obj = new cData(); GridView1.DataSource = obj.MethodName();** GridView1.DataBind(); ** MethodName() refers to a method in the data class that is connecting to the database
How do you take a website that has been created using visual studio and C# and deploy it on the internet?
" " appears a lot in the source code of a form, what is the purpose of this?
if(RadioButtonList1.SelectedIndex > -1) { code you want the program to execute if a radio button is selected } else { output statement asking the user to selecct a radio button }
what is the difference between a partial class and an abstract class?
If you are linking to SQL server it would be best to use the Structured Query Language. As an alternative you could use the built-in database option in visual studio
member initialization is assigning a default value to a member
when using a database in a program would it be better to use SQL server or the built-in option in visual studio?
why do you sometimes have a partial class with only accessor and mutator methods (get and set)?
The End.
21310051