It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am trying to display the value of a session in a html tag?
The best search i could find on google to do this returned the following:
<p><%= Session("fileName").ToString()%></p>
I would like a message yo display on my web page saying, File name is "bla bla".
<p>File name is = Session["fileName"].tosring()</p>
If it was MVC i could use something similar to
#Html.Raw(Session["fileName"].ToString())
But does anyone know how to do this for a standard html webpage, i think this should be a pretty simple solution but have found nothing to show me how to do it.
Thanks in advance.
If this is Razor (with MVC) you can use
<p>#Html.Raw(Session["fileName"].ToString())</p>
If it is just a .html page then you are unable to do this as a session is a server side variable so you will need a server side language to retrieve it
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a huge problem with converting my pre-existing HTML based webpage into Joomla.
I have tried for the last 36hours to figure out how this Cms works, and it all seems to be a waste of time. I wonder if there is any quicker solution in my case? Or do I have to adapt my entire content and rewrite big chunks of code? It doesnt seem to be any easy way to just add the HTML i have and just work with what i already have. I am really content with my webpage as it is, all I want is to publish it and enable some login panel for admins and lower level admins...
Some guidance here thanks
Turn off the editor (edit your profile and set editor to none) and then create an article for each html page by just pasting in the html (but not the head or the body tags).
Have you looked at the beginner materials?
http://docs.joomla.org/Beginners
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
First up all I am a web developer (very weak in Application side).
My website is in .html ,my question is ,is it possible to use open id concept in my html page ,or i want to change it into php or some other.
After login using open id one discussion form also in my page.
Is it all possible in .html ? Is it discussion form also possible to do using open id concept.
any demo or link will be very help full for me.
For any type of login or comments you will need to use php with a database. You might be able to pull it off with jQuery.
http://www.phpeasystep.com/phptu/6.html - Login Tutorial
http://www.allsyntax.com/tutorials/PHP/24/Building-a-Comments-Script/1.php - Comments Tutorial
Is this what you were looking for or something else?
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm working on a website made with Orchard CMS. I put a Projection Widget on a page with a custom query and it works perfectly but if there is a pager on that page and I click to another page (not to the first) the Projection Widget becomes empty. So it shows result only on the first page of the pager.
Is this an Orchard bug or am I doing something wrong maybe? Any ideas?
Thanks!
You need to configure the pager on that widget to use a different pagination parameter.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to have a link to an xml page from with in my webpage
uh.....
My Awesome XML File!
You can just link to it.
About my feed
But if you want the XML to appear similar to HTML output, then you will need to style it.
See my answer to this question from earlier.
RSS feed display
I am not sure that I understood your question. Please rewrite your question in more detailed manner. If you need to give hyper link use the following syntax.
click here
or
click here
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to make it possible for someone with a username and password to login and edit my html page using a nice clean editor. I don't want them to see the code when they log in to edit the page but a straightforward version of the html page.
Creating a proper CMS (Content Management System) is a huge undertaking. I suggest looking for a pre-built CMS to add to your site.