Recent content by shahid

  1. S

    file hyperlinks

    Why not make the hyperlinks on the run time instead of storing them into separate field, which will cause too much repetation. An example of ASP code: <% strURL = Server.Mappath(rsData("job")) response.write "<a href='" & strURL & "'>Link Text</a>" %> the string strURL will contain the actual...
  2. S

    re-sorting recordset

    Thanx for the code, it will certainly prove handy later on. Please see my updated question.
  3. S

    I cannot edit information through a query

    same with me ! I had the same problem, so I used simple select query to do the modification. Its strange that the access query if ran within access allowed me to update data, but the same query didn't allow modification when ran from ASP page. Can someone tell why is that ?
  4. S

    re-sorting recordset

    Hello... I wanted to ask if someone can tell me a way to re-sort recordset without accessing the database again. For example, On a website using ASP, a user requests specific data to be sorted by date in assending order...and page is displayed. Now I want to place a link to sort the same...
  5. S

    Pros help me !

    Hi there Pros! I have a website on which registered users will submit their writings, articles, stories etc .. means lots of text will have to be saved and reterieved. I talked to someone about this; he recommened using text files for storing articles (pages of text) instead of storing them in...
Back
Top Bottom