I am working on a website that requires some of its pages to be password protected. If the user clicks on a protected page and has not logged in yet, they are...
Hi Julie, You can implement this by following method: 1. When user click on protected page, keep the page name in Session variable and redirect user to Login...
Hi All, Im having a doubt about QueryString passing method which I've seen recently somewhere on the web. I dont know the language used to build the page like...
Hi Javed, The page name has nothing to do with the querystring. Whatever parameters come after the question mark, they don't affect the name of the page. ...
Hi Apart from W3 <http://www.w3schools.com/ASP/> , are there any good ASP tutorials on the internet ? [Non-text portions of this message have been removed]...
Apart from W3 <http://www.w3schools.com/ASP/> , are there any good tutorials on the internet ? Either online or downloadable. [Non-text portions of this...
Don't tell me http://learnasp.com isn't running anymore... Well looky here! http://learnasp.com/freebook/asp/ Cheers, Peter ... [Non-text portions of this...
http://www.4guysfromrolla.com/webtech/index_asp.shtml the 1998, 1999 and 2000 articles are ASP (2000 some of them are ASP.net) There is a icon with ASP on main...
Hi, Use this <a href="http://<%= (rcdsetlibinfo.fields.item("WebAddress").Value) %>"><%= (rcdsetlibinfo.Fields.Item("WebAddress").Value)%></a></p> because ur...
I have a web page where users enter data. If they need additional rows they can click a "Add Row" href link and it adds a row. How do I get the rows to add...
There are a lot of different ways to do this. One of the simplest ways: If the add a row link is clicked show a form in which you submit the data for the new...
<--!#include file="image.asp"--> first include file second use of code of asp ex. <--!#include file="image.asp"--> <% rsponse.write("hello") %> - -- In...
I prefer: do until rs.eof %> <tr ><td class=right><%= rs("ID") %></td> <td class=right><%= rs("First Name") %> ... for readability. But that's just a style...
Hi All, I'm having a Mysql Database and want to retrieve records as per the "resource", a field in the database. After retrieving I want to know how many...
Also, consider using the GetRows method. This not only gives you several ways to slice and dice the data, but since it returns an array, you get vastly better...
Hi Charles, Thanks for replying. I've already included adovbs.inc file but didnt included it in the code which I've posted here. I dont know whats the problem...
Looks like you're trying to use reserved words for variables is the problem. Instead of "typename" try tname or some other variation. Not sure that's it but...
I've been beating my head against the wall trying to figure this out and have just been wasting lots of time. What I want to do: In my table of displayed...
First off I like your handle :) I would probably go with Jquery for the html manipulation + ajax calls. Just google around a bit and you will find loads of...