You need to Register for free and Login to post a message in the forum.

Forum

Links
Last Post 2010-03-12 11:15 AM by rajani. 51 Replies.
Printer Friendly
  •  
  •  
  •  
  •  
  •  
Sort:
PrevPrev NextNext
You are not authorized to post a reply.
Page 1 of 3123 > >>
Author Messages
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-04-14 05:05 AM  
I have developed .net project and now i want to update it with DotNetNuke.Previous project contains ajax controls.Right now i m converting each aspx page to user control and then adding it to the page in DotNetNuke.But i m not able to give link to the page which is made in DotNetNuke.How i can do this?Where the pages are getting stored in dotnetnuke?I want to give link from user control to the page in DotNetNuke which also contains another user control
Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9309
Avatar

--
2009-04-14 01:42 PM  
The pages in DotNetNuke are actually generated dynamically from entries in data tables.

To link to another DotNetNuke page, you can use a link like http://yoursite.com/pagename.aspx.

But, there probably are better ways to do this. Check out adefwebserver for a tutorial or two on navigating between pages.

Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-04-16 05:14 AM  
In dotnetnuke there are 3 tabs home,admin and host.i want to add one more "tab" .How i can do this?
Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9309
Avatar

--
2009-04-16 02:41 PM  
Logged in as Admin or Host, look at the left side of the Control Panel for Page Functions.  Click the Add link.

Take a look at these tutorials:


Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-04-17 08:23 AM  
Thanks for previous reply. I did it.



Our Project related with online shopping, contains different "web stores" and they have different url's. we were managing the the web stores by different "store id". when user hits the url, as per the url it will redirected to the different home pages and then all operations are done with the help of storeid.how i can do this in dotnetnuke 4.09.02?I want to display two different  home page from dotnetnuke as per the url changes.plz help me out.
Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9309
Avatar

--
2009-04-17 12:45 PM  
One way that you might approach this is via Ifinity's URL Master and explicitly rewrite the incoming URL.  I'm assuming the "store id" is embedded in the URL?

Another approach would be to put a custom module on the home page that looks at the URL and redirects.

I'd probably go with the first approach.

If there are more details on what you are doing, please explain more.  There might be other alternatives.

Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-04-18 10:47 AM  
right now we are running our project on localhost,so given the links like "http://localhost/dnn/GtplCart/Categ...fault.aspx" this works very well.But the problem is, when we will upload the same pages in server it will not work.So what i can do ,so that there will not be the necessary to change the links when we will run our project on server ...
Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9309
Avatar

--
2009-04-18 12:47 PM  
You should write your code to use relative links.

If the links are hard coded to include the base URL, you will have to edit that when you upload the site to a new server with a live URL.

Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-05-06 05:49 AM  
thanks for previous reply
Now i m facing problem with fileupload control.i have used it in one of the control n written the code as fileupload1.hasfile...even if i m giving filename it gives error Object instance not set to an instance of an object....i tried other options like postedfile but it is not working n gives same error...what i have to do so the error will out.i want to give path for image file from file upload control n want to save it in the database...

                I have taken checkbox in fieldset. On page there are 2 fieldset, one for billing address and other for shipping address,if i click the checkbox it would run javascript fuction and must fill the values from billing address to shipping address with same values.And the checkbox which i have taken is html control.
i just want information copying from one fieldset to another with checkbox event.How i can do this??

rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-10-08 01:25 PM  
Good Evening Sir,thanks for previous all reply.
I have a problem with httpcontext object.
on home page i add value of url into the httpcookie . For log out page i get this saved value from httpcontext.current.Request.Cookie method.
Suppose i have saved 'localhost/DNN' into cookie then httpcontext.current.Request.Cookie gives the url as 'localhost%2fDNN'
so it gives error in my code.
how to solve this problem so i get both url's have equal value. please help me.


Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9309
Avatar

--
2009-10-09 01:32 PM  
You will need to decode the URL that you get from the cookie.  "%2f" is the coded value for /.

.NET Framework Class Library<!---->
HttpServerUtility..::.HtmlDecode Method (String)<!---->
<!--Content type: Devdiv1. Transform: orcas2mtps.xslt.-->

<!---->

Decodes an HTML-encoded string and returns the decoded string.

<!---->

Namespace:  System.Web
Assembly:  System.Web (in System.Web.dll)

Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-11-11 03:46 AM  
Good morning sir,
Thanks for previous all reply.i have a question that can i add more than one parent modules in single dnn web site.
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-11-11 03:48 AM  
I am using dnn 4.09.02 version.
Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9309
Avatar

--
2009-11-11 10:37 AM  
You can have more than one parent portal, yes.

Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-11-13 04:58 AM  
Thanku sir
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-11-16 12:25 PM  
Good Evening sir,
Pls tell me , does dnn skin and dnn themes both are same things?If no,how can I change the theme of dnn site.
thank u.
Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9309
Avatar

--
2009-11-16 09:26 PM  
Yes, those are the same thing.  You change the "theme" by changing the skin.

Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-11-18 04:04 AM  
Good morning sir.
Thanks for previous all reply.I have downloaded free dnn skin named 'DNNFlower'. It work fine in my site.I have problem in current date.On home page it shows wrong date i.e. previous day date.If I logged as 'Admin' and 'Host' then it shows correct date.
pls tell me how to solve this problem.
Thanks.
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-11-18 05:27 AM  
I have another question.I have added FAQ module in my dnn web site page.
I have added two categories named 'shopping cart' and 'DNN' and a question-answer in each category.But it shows both questions sequentially one after another date-wise.
Is it possible to see question and answer categoriwise .ie.'Shopping cart' category and all its questions ,'dnn' category all its questions?
If yes,how do I set this in my module.
Thank u.
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-12-02 12:23 PM  
Good evening sir,
Thanks for previous all reply.
We are facing some problems with different browsers while viewing our site.
http://amookherjee.s20.dotnetsql.com/
Please open it in IE and Mozilla Firefox to check the difference.
The main difference could be seen in the left pane of our website.
If you suggest us the solution then we will be thankful to you..
You are not authorized to post a reply.
Page 1 of 3123 > >>


Active Forums 4.3

Latest Forum Posts

DNN 6.2 by Sameer
Hi All i am using dnn 6.2 beta version for my demo site i need to custmize the 4 modules in that
RE: Deploying dnn by Sameer
Thanks a lot so kind of you
RE: Unable to Create Skin Package by schilders
Joe, When I click the Edit icon next to the skin package on the Host Extensions page, I receive t
horizontal main and submenu items by Dan Glanton
I found a very good tutorial on horizontal main and subitems in DNN Creative, but what about if you
RE: Skin creation - Menu questoni by Joseph Craig
This has to do with the structure of the elements that make up the skin and the CSS. Most likely, y
Skin creation - Menu questoni by CDMeyer
I have a skin and when I add more menu items to the nav bar than can fit in one row of nav, the seco
RE: FCK Editor in DNN 6 by Pingle2009
Just to follow on from Joe's reply, the 'official' line seems to be that not only that the old FCK E
RE: Slice a Site by Dan Glanton
Thanks, I'll look into that when I get a chance.
RE: Creating structured page content by Stephen Bugden
Thankyou very much Joe, I will take a look at your suggestions.
RE: Subpages or dropdowns navigation is going behind this flash by Joseph Craig
I googled a bit and found that this is a messy problem. Possibly the best solution will be to giv
RE: Subpages or dropdowns navigation is going behind this flash by vijendra
Pls check the attachment. That Iframe code we are using and subnavigations are goind behind that.
RE: Rename or move site from domain name to subdomain name by Bill Quinn
Hi Joseph, Thank you so much for your reply. I will be able to implement this later in the we
RE: Creating structured page content by Joseph Craig
Take a look at the DotNetNuke Reports Module, the DotNetNuke Form & List Module, SGSV from Tresslewo
RE: Subpages or dropdowns navigation is going behind this flash by Joseph Craig
It looks like your iframed content may have a z-index that puts it on top of the menu. I can't id
Subpages or dropdowns navigation is going behind this flash by vijendra
Hi, Subpages or dropdowns navigation is going behind this flash. Pls check the url below http://www.
RE: user adding images by rod lloyd
That worked, thank you. I did not expect those permissions to be in File Manager. I note a
RE: Unable to Create Skin Package by Joseph Craig
To be quite honest, I've never used this functionality to create a skin. What I usually do is cre
RE: Unable to Create Skin Package by Joseph Craig
I'm confused by this, too.
RE: Unable to Create Skin Package by schilders
We are running DNN 6.x
RE: Unable to Create Skin Package by Joseph Craig
Which version of DotNetNuke are you using?
You are not logged in.
You must log in to access all 
650+ videos, tutorials, podcasts, and more.
RSS Feeds