Forum: ASP.NET Nov 3rd, 2009 |
| Replies: 4 Views: 253 Hi
Try the query like this
SELECT count(*)
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'mytable' |
Forum: ASP Apr 5th, 2009 |
| Replies: 3 Views: 1,445 ok.. good
You are welcome..
please mark this thread as solved.. |
Forum: ASP Apr 2nd, 2009 |
| Replies: 3 Views: 1,445 Hi,
It seems your query is not returning any values.. try doing this
select * from Trains where Route like '%'+@Route1+'%' and Route like '%'+@Route2+'%' |
Forum: C# Apr 2nd, 2009 |
| Replies: 5 Views: 591 Hi,
For the Control Values.. U need to convert your Bound Controls to TemplateFields. chk this
then you can FindControl these values.. in your .cs file |
Forum: C# Apr 1st, 2009 |
| Replies: 5 Views: 591 Hi
The code mentioned in PageLoad.. gets repeated for every postback,
try this way... |
Forum: ASP.NET Dec 10th, 2008 |
| Replies: 11 Views: 1,481 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,481 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,117 Try doing this.. it should work
Replace this code :
ddlItems.DataSource = dsCategory;
ddlItems.DataMember = "Categories";
ddlItems.DataTextField = "Description";
With ... |
Forum: Java Dec 9th, 2007 |
| Replies: 10 Views: 2,334 At some point, Java source needs to become platform-native executable code. This typically requires a two-step process: the developer compiles his or her source into Java bytecode, and then a Java... |