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

Forum

Links
Last Post 2010-03-12 12:15 PM 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 06: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:9008
Avatar

--
2009-04-14 02: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 06: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:9008
Avatar

--
2009-04-16 03: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 09: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:9008
Avatar

--
2009-04-17 01: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 11: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:9008
Avatar

--
2009-04-18 01: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 06: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 02: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:9008
Avatar

--
2009-10-09 02: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 04: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 04:48 AM  
I am using dnn 4.09.02 version.
Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9008
Avatar

--
2009-11-11 11: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 05:58 AM  
Thanku sir
rajaniUser is Offline
Nuke Ace
Nuke Ace
Posts:58

--
2009-11-16 01: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:9008
Avatar

--
2009-11-16 10: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 05: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 06: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 01: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

RE: DNN site automatically redirects to a different domain name. by imran shaikh
Thanks for the reply joe this is my portalalias table entries 2 0 localhost/tradeupgrade -1
RE: "Good" hosting providers by ejcullen rene
informative!!!
RE: URL Master Module doesn't work on IHostASP hosting by ejcullen rene
informative!!!
RE: shared web hosting by ejcullen rene
informative!!. i got hosting service from http://www.thewebpole.com/ my hosting company offers you
RE: iPhone website logo in DNN root directory by JohnnieD
I'm supposed to add this link to make my custom logo show up on iPhones. Where in DNN would I a
iPhone website logo in DNN root directory by JohnnieD
I'm trying to put an iPhone logo that I made into my site so when someone saves the website on their
RE: Fixed size container by Joseph Craig
Use an HTML module and style the container to have a fixed height and width. Set the overflow attr
Fixed size container by Aggiedan97
I am looking for advice or an actual container that has a fixed height (and width). An HTML module w
RE: DNN 6.1 app_offline.htm by Joseph Craig
If the site "works" in Chrome, Firefox and Safari, but not in IE8 look to IE8 as the problem. It is
RE: DNN site automatically redirects to a different domain name. by Joseph Craig
Make a copy what is in the portalalias table and then remove all but the localhost entry. Verify th
DNN 6.1 app_offline.htm by Dave Hassall
Hi As recommended I have successfully been using the app_offline.htm whilst performing upgrades t
RE: DNN site automatically redirects to a different domain name. by imran shaikh
Hi i have done same as mention in this post my dnn folder name is Trademaxomanupg with
Enforce Terms Tutorial Update by Vistalogix Corporation
I tried configuring my DNN 6.1.2 install to have a required "accept terms" checkbox as described in
RE: Best Practices for Modifying a Custom Module by Joseph Craig
Start up the development website, then install the module using the package that you have. Then, yo
Best Practices for Modifying a Custom Module by schilders
Good Morning, I'm needing to modify a custom built module created by another developer targeted f
RE: Admin menu problem by alireza arabiyan
hi in localhost i have http://localhost/senf/خانه.aspx and http://localhost/senf/Admi
RE: Admin menu problem by Joseph Craig
Yes, that is what you should have done. What is the URL for your home page? What is the URL for
RE: Admin menu problem by alireza arabiyan
hi first in localhost i add my domain.com as portal alias. then copy all files to host , restore my
RE: Admin menu problem by Joseph Craig
How did you move it? Have you added an entry in the portalalias table for the site's domain name?
RE: Re: SQL SERVER 2008 R2 Remote connection by Joseph Craig
Set up a user with dbo privileges and set the connection string for that user, rather than using Win
You are not logged in.
You must log in to access all 
650+ videos, tutorials, podcasts, and more.
RSS Feeds