19 Sep
2003
19 Sep
'03
3:10 p.m.
Hi, I have a product where I am using the following method to display a page: def index_html(self, REQUEST=None): "Method to show my web page" Content_Main = PageTemplateFile('showMyPage.pt', _wwwdir) setattr(myClass, 'Content_Main', Content_Main) if REQUEST is not None: return self.Template_index_html(self, REQUEST) I would like to modify this to have it duplicate the behavior of the following url: http://www.mysite.com/myClass/index_html#myID Where myID is defined in showMyPage.pt by <p id="myID"> some text </p> How would I accomplish this? Thanks, Mike