Forum: ASP.NET Nov 3rd, 2009 |
| Replies: 4 Views: 247 Hi
Try the query like this
SELECT count(*)
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'mytable' |
Forum: ASP.NET Dec 10th, 2008 |
| Replies: 11 Views: 1,476 Hi
did you tried doing this.. ?
protected void Page_Load(object sender, EventArgs e)
{
if(!IsPostback)
{
// your complete Country code here
} |
Forum: ASP.NET Dec 9th, 2008 |
| Replies: 11 Views: 1,476 Hi..
Put all the code in Page load event in !IspostBack like below..
protected void Page_Load(object sender, EventArgs e)
{
if(!IsPostback)
{
// your... |
Forum: ASP.NET Dec 3rd, 2008 |
| Replies: 19 Views: 2,110 Try doing this.. it should work
Replace this code :
ddlItems.DataSource = dsCategory;
ddlItems.DataMember = "Categories";
ddlItems.DataTextField = "Description";
With ... |