Forum: MySQL Oct 2nd, 2009 |
| Replies: 3 Views: 562 I do not know if this can help you, but if you have a date field which you can order by desc, then you can use Top 1 something like this.
Select top 1 Field1
from table1
order by datefield desc... |
Forum: ASP.NET Aug 28th, 2009 |
| Replies: 17 Views: 870 I use querystring to retrieve parameters send from another form, let's say that you are and index.html and there is a link url to default.aspx like this
~/Default.aspx?var=hello
then and the... |
Forum: MS SQL Aug 17th, 2009 |
| Replies: 3 Views: 486 Why dont you include the parameters in the select statement something like
string st = "select user, pass from loggin where user = '"+txtbox1.text+"' and pass = '"+txtbox2.text+"'";
//Then pass... |
Forum: ASP.NET Jul 30th, 2009 |
| Replies: 1 Views: 338 Hi, check this thread could be helpful for you
http://www.daniweb.com/forums/thread204828.html |
Forum: VB.NET Jul 17th, 2009 |
| Replies: 3 Views: 1,237 Lets say that in the loadmain you set text for a label like this
Label1.Text = "Load Main"
But you want to do the same thing if you click a button, then create a function called for example... |
Forum: MySQL Jun 23rd, 2009 |
| Replies: 9 Views: 753 ok so your statement should be like this.
regards. |