Forum: ASP.NET May 3rd, 2005 |
| Replies: 2 Views: 2,444 Mod, did I post this thread in the wrong forum?
Has anyone experienced this? PLease help! |
Forum: ASP.NET Apr 25th, 2005 |
| Replies: 2 Views: 2,444 Hi All,
When I try to run my very first .net App on the server, I got the error saying that
"Server cannot access application directory 'D:\Inetpub\myApp\'. The directory does not exist or is... |
Forum: ASP Apr 21st, 2005 |
| Replies: 1 Views: 4,812 Looks like a typo to me. The name of the textbox is txtFirstName not just FirstName. |
Forum: ASP.NET Apr 21st, 2005 |
| Replies: 74 Views: 195,626 I think what he asked was:
Instead of
FormsAuthentication.RedirectFromLoginPage(txtUserName.Text, False) ' ||||| default.aspx Page! ,
can he use, Reponse.Redirect
The answer is Yes.... |
Forum: ASP.NET Mar 28th, 2005 |
| Replies: 151 Views: 185,418 Hi there,
Thanks to Paladine, I've learned a lot from his .NET login example as well.
About the error, it's just a careless typo. To fix it, replace (.) with a commas(,) after NULL in the... |
Forum: ASP.NET Mar 8th, 2005 |
| Replies: 151 Views: 185,418 It's my bad. I didn't know that the params in the SP must match the params in .net page
Your example works perfect. Thanks again. |
Forum: ASP.NET Mar 8th, 2005 |
| Replies: 151 Views: 185,418 Thanks a bunch Paladine. Almost there.
I ran the login page in debug mode and found this:
After MyCmd.ExecuteNonQuery(), it took me to the Catch ex As Exception
I double checked the strConn &... |
Forum: ASP.NET Mar 7th, 2005 |
| Replies: 74 Views: 195,626 Thanks for your help and being so patient with me. This is my very first attempt to work with .net so please excuse me for my dumb question. I'm still having a hard time to convert your code to work... |
Forum: ASP.NET Mar 4th, 2005 |
| Replies: 74 Views: 195,626 I'm using SQLServer 7.0
My strConnection in web.config
<appSettings>
<add key="connString" value="server=myDBServer;uid=myid;pwd=myPass;database=myDB" />
</appSettings>
For SQL, I... |
Forum: ASP.NET Mar 4th, 2005 |
| Replies: 74 Views: 195,626 Thanks for the code Paladine. I am working with SQLServer DB version. When I ran it, I got the error complain that the SqlConnection, MyCmd, MyConn were undefined. |
Forum: ASP.NET Feb 24th, 2005 |
| Replies: 74 Views: 195,626 That would be nice. Waiting to hear from you ....
Many Thanks. |
Forum: ASP.NET Feb 22nd, 2005 |
| Replies: 74 Views: 195,626 Hi everyone,
Another .net newbie in the house. Could someone please put everything together for SQL DB? I am trying to follow the instruction on Access and then change some stuffs to SQL but it... |