Forum: Networking Hardware Configuration Mar 2nd, 2006 |
| Replies: 4 Views: 2,839 I would try to find the trial version of FlashFXP. I have also had problems with xp's ftp interface.
Miller |
Forum: Network Security Mar 2nd, 2006 |
| Replies: 13 Views: 416,097 In a browser try the following 192.168.0.1 ; 192.168.1.1 ; 192.168.100.1 ; 192.168.1.100.
Hope this helps.
Miller |
Forum: ASP.NET May 16th, 2005 |
| Replies: 9 Views: 20,477 Nice this is good stuff Paladine.
Miller |
Forum: ASP.NET May 8th, 2005 |
| Replies: 74 Views: 195,361 np man just trying to give back to da community. This site has helped me out alot.
Miller |
Forum: ASP.NET May 5th, 2005 |
| Replies: 2 Views: 2,442 Yeah I believe it is in the wrong forum. This is for tutorials.
Make sure the ASPNET user has access to the webroot(I beleive Read/execute is all it needs). And also IUSR user has read/write. I... |
Forum: ASP.NET May 5th, 2005 |
| Replies: 74 Views: 195,361 I dont really know how your wanting to go about this login but it doesnt look like its the same as Paladines. In his example he is making sure that "1" user in the database has a username password... |
Forum: ASP.NET May 5th, 2005 |
| Replies: 2 Views: 6,125 One thing that would help out if you are using multiple readers or what not on a page just do an import ie.
Imports System.Data.SqlClient
Then you could do Dim myReader2 As SqlDataReader
Maybe... |
Forum: ASP.NET May 5th, 2005 |
| Replies: 2 Views: 7,370 Here might be one solution to help you out. This is not my work I found it elsewhere.
In the web.config file, add the following section
<configuration>
<appSettings... |
Forum: ASP.NET May 5th, 2005 |
| Replies: 151 Views: 185,198 Sup guys, I finished the project I was working on. I appreciate the help I got from Paladine. His tutorial helped be quite a bit on getting started. I ended up using cookies instead of session... |
Forum: ASP.NET Apr 12th, 2005 |
| Replies: 1 Views: 3,670 Ok I found my problem. I had to add this to the web.config
<system.web>
<webControls clientScriptsLocation="aspnet_client/system_web/1_1_4322/"/>
</system.web>
because for some reason... |
Forum: ASP.NET Apr 12th, 2005 |
| Replies: 1 Views: 3,670 I have 2 forms. One is a login form and the other is a registration form. Both have various textboxes and a "Submit" button. Now when using Mozilla these controls "Buttons" work perfect with no flaws... |
Forum: ASP.NET Apr 7th, 2005 |
| Replies: 151 Views: 185,198 I have tried IE and Mozilla to run the application and from different computers. I started a completely new project with basic controls with the code and I still get the same thing. It redirects me... |
Forum: ASP.NET Apr 7th, 2005 |
| Replies: 151 Views: 185,198 LOL but what cracks me up about this error tho is that when I try to login with just garbage as the username and password 3 times in a row until I get directed to denied.aspx then hit the back button... |
Forum: ASP Apr 6th, 2005 |
| Replies: 3 Views: 8,176 Is this using an SQL database? And I didnt see the files you said were listed to see the flow.
Thanks! Thats good stuff there.
Miller |
Forum: ASP.NET Apr 6th, 2005 |
| Replies: 151 Views: 185,198 The thing is tho is that its getting past the If Cstr(objReader.GetValue(0)) < "1" Then
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
' Fires when the session is started... |
Forum: ASP.NET Apr 6th, 2005 |
| Replies: 151 Views: 185,198 Ok I setup breakpoints throught my app in the login DB function and within the page load of the default page. It makes it all the way through the login page and into the default page load where then... |
Forum: ASP.NET Apr 6th, 2005 |
| Replies: 151 Views: 185,198 I think I get what you are saying so this the way I have it now would only work if the scroll number was 1 and would work if the number was like 200?
If CStr(objReader.GetValue(0)) <> "1" Then
... |
Forum: ASP.NET Apr 6th, 2005 |
| Replies: 151 Views: 185,198 Ok guys I have been working on this for hours and I still cant figure out what the problem is. So here is my setup
web.config
<appSettings>
<add key="strConn" value="Provider =... |