Forum: VB.NET Oct 15th, 2009 |
| Replies: 10 Views: 487 I think you will just configure the security folder of the Database to set the desired user.. |
Forum: VB.NET Oct 14th, 2009 |
| Replies: 2 Views: 279 create anther data set w/c will hold the updating stuff... |
Forum: VB.NET Oct 14th, 2009 |
| Replies: 7 Views: 3,998 MessageBox.Show("Name:", BName.toString(), MessageBoxButtons.OK, MessageBoxIcon.Information) |
Forum: VB.NET Oct 12th, 2009 |
| Replies: 2 Views: 321 use a data reader
ex:
while (drResult.read())
x = drResult("id").toString()
end
drResult.close()
of course you must use a stored procedure in order to retrieve the info in a particular... |
Forum: ASP.NET Oct 7th, 2009 |
| Replies: 9 Views: 441 u can try to use ASP AJAX |
Forum: VB.NET Oct 7th, 2009 |
| Replies: 4 Views: 5,091 |
Forum: ASP.NET Oct 7th, 2009 |
| Replies: 2 Views: 216 I think you will create a temporary string which will hold the CAPTCHA random generated image text.. then compare it to the user input.. |
Forum: ASP.NET Oct 7th, 2009 |
| Replies: 6 Views: 357 I think your using a "MIXED" SQL server Autentication.. normally the Default user name and password is (username : Sa password: admin)
<connectionStrings>
<add... |