reset password
Author Message
jigar_gaglani
Posts: 16
Posted 19:06 May 28, 2009 |

Hello professor,

       There is an error in taconite while passing more than one argument in a query string. I am passing theme id along with entry id on entry titles click in archive, but it is giving an exception on 2nd argument as :

Error: not well-formed
Source File: http://localhost:8080/csns/blogs/unfoldyear.html?ts=1243562486735&blogId=1&yearId=2009&monthId=3
Line: 12, Column: 50
Source Code:
       <a href="viewComments.html?entryId=2&theme=1">2nd entry for instructor blog

Kindly suggest the solution if we want to pass more than one argument in a query string in taconite.

PoonamPawar
Posts: 16
Posted 19:31 May 28, 2009 |
jigar_gaglani wrote:

Hello professor,

       There is an error in taconite while passing more than one argument in a query string. I am passing theme id along with entry id on entry titles click in archive, but it is giving an exception on 2nd argument as :

Error: not well-formed
Source File: http://localhost:8080/csns/blogs/unfoldyear.html?ts=1243562486735&blogId=1&yearId=2009&monthId=3
Line: 12, Column: 50
Source Code:
       <a href="viewComments.html?entryId=2&theme=1">2nd entry for instructor blog

Kindly suggest the solution if we want to pass more than one argument in a query string in taconite.


Hey,

In taconite file,try this,

 <a href="viewComments.html?entryId=2&amp;theme=1">

I think, it will work.

 

jigar_gaglani
Posts: 16
Posted 19:45 May 28, 2009 |

Ok, Thanks poonam its working.