Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
6answers
38k views

Asp.net - Add blank item at top of dropdownlist

Why is the dropdown not showing my blank item first? Here is what I have drpList.Items.Add(New ListItem("", "")) With drpList .DataSource = myController.GetList(userid) .DataTextField = ...
0
votes
1answer
887 views

Cursor returns zero rows from query to table

I've created an SQLiteDatabase in my app and populated it with some data. I can connect to my AVD with a terminal and when I issue select * from articles; I get a list of all the rows in my table and ...
0
votes
3answers
92 views

MySQL select date, join statistic data - how?

I have some statistics I need to report on a monthly basis. I need my query to return 0's for statistics which aren't there. The only way I know to do this is to use SQL to generate a list of days ...
0
votes
1answer
73 views

how to make empty rows as high as those non-empty rows?

<table id="experiences" cellpadding="0" border="1" width="100%"> <caption>table name</caption> ...