CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > general_asp.net.master_pages_themes_and_navigation_controls Tags:
Item Type: NewsGroup Date Entered: 9/13/2006 10:01:42 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 13 Views: 18 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
14 Items, 1 Pages 1 |< << Go >> >|
Mark Gagnon
Asp.Net User
Error loading iframe into contentplaceholder!9/13/2006 10:01:42 AM

0/0

I put an iframe within a contentplaceholder but when I try to run it in "view in browser" mode I get a blank contentplaceholder.  Below is the code that I used and I would like to have the option of loading .pdfs in the contentplaceholder.

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">

<iframe id="iFrame" src="http://msn.com" width ="100%" height ="100%" runat="server"/>

</asp:Content>

 Any suggestions on how to remedy this error or use a better approach, please feel free to share input.

Rivelyn
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/13/2006 5:00:45 PM

0/0

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">

<iframe id="IFrame1" frameborder="0" scrolling="yes" src="Resume.htm" style="width: 750px; height: 600px" title="Resume"></iframe>

</asp:Content>

I think you just forgot to close your iframe tag. 

I also had to put my resume.htm in the same folder location as the resume.aspx page but it works like a charm now. I used at first a pdf version of my resume but I changed my mind because it relied on a person having adobe installed, with it being an htm then it did not matter.

Rivelyn
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/13/2006 5:02:21 PM

0/0

I should have first stated that the code above is my code that is working fine on my website.
Mark Gagnon
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/13/2006 7:16:43 PM

0/0

I tried your code with a test htm document and still it doesn't show up.  Here is my code:

<iframe id="IFrame1" frameborder="0" scrolling="yes" src="test.htm" style="width: 750px; height: 600px" title="Test"></iframe>

Thank you in advance for your help.

Rivelyn
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/14/2006 1:39:42 PM

0/0

The only thing I can think of is you need to compile and view the page in a browser to actually see the htm content. While working in VS I see a blank page because the htm content needs to render. So I see nothing until I run the page... Tried that?

Mark Gagnon
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/14/2006 9:56:03 PM

0/0

I tried viewing the page in IE and the page renders but no iframe content appears within the contentplaceholder.  Do I need to allow iframes on my local cpu thru somekind of option?
Rivelyn
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/15/2006 2:02:49 AM

0/0

No there are no setting to turn on or off iFrames....

Past all of your code, and I will have a look or drop it into my VS to see if I can get it to work, if you want.

Mark Gagnon
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/15/2006 2:26:48 AM

0/0

Ok, here are my master page and child page codes

MasterPage2.master

<%@ Master Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<script runat="server">

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

<title>Untitled Page</title>

<script language="javascript" type="text/javascript">

// <!CDATA[

function TABLE1_onclick() {

}

// ]]>

</script>

</head>

<body>

<form id="form1" runat="server">

<div>

<div>

<table style="width: 100%; border-top-style: none; border-right-style: none;

border-left-style: none; border-collapse: collapse; height: 100%; border-bottom-style: none" id="TABLE1" onclick="return TABLE1_onclick()">

<tr>

<td style="width: 14%; height: 10%; background-color: silver">

</td>

<td style="width: 60px; height: 60px; background-color: red; background-position: left top; background-image: url(images/60by60 rounded top left corner.GIF); background-repeat: no-repeat;">

</td>

<td style="width: 6%; height: 10%; background-color: red">

</td>

<td style="width: 6%; height: 10%; background-color: red">

</td>

<td style="width: 60px; height: 60px; background-color: red; background-position: right top; background-image: url(images/60by60 rounded top right corner.GIF); background-repeat: no-repeat;">

</td>

<td style="width: 14%; height: 10%; background-color: silver">

</td>

</tr>

<tr>

<td style="width: 14%; background-repeat: no-repeat;

height: 10%; background-color: silver;">

</td>

<td style="background-image: url(images/60by60 rounded bottom left corner.GIF); width: 60px;

background-repeat: no-repeat; height: 60px; background-position: left bottom; background-color: red;">

</td>

<td style="background-position: left top; width: 6%; background-repeat: no-repeat;

height: 10%; background-color: red">

</td>

<td style="background-position: left top; width: 6%;

background-repeat: no-repeat; height: 10%; background-color: red;">

</td>

<td style="background-position: right bottom; background-image: url(images/60by60 rounded bottom right corner.GIF); width: 60px;

background-repeat: no-repeat; height: 60px; background-color: red;">

</td>

<td style="width: 14%; background-repeat: repeat-x;

height: 10%; background-color: silver;">

</td>

</tr>

<tr>

<td style="width: 14%; background-color: silver;">

<asp:Menu ID="Menu1" runat="server" BackColor="#F7F6F3" DynamicHorizontalOffset="2"

Font-Names="Verdana" Font-Size="0.8em" ForeColor="Red" StaticSubMenuIndent="10px"

Width="140px">

<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<DynamicHoverStyle BackColor="#7C6F57" ForeColor="White" />

<DynamicMenuStyle BackColor="#F7F6F3" />

<StaticSelectedStyle BackColor="#5D7B9D" />

<DynamicSelectedStyle BackColor="#5D7B9D" ForeColor="AntiqueWhite" />

<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<Items>

<asp:MenuItem Text="Home" Value="New Item"></asp:MenuItem>

<asp:MenuItem Text="Contact Us" Value="Contact Us"></asp:MenuItem>

</Items>

<StaticHoverStyle BackColor="#7C6F57" ForeColor="White" />

</asp:Menu>

&nbsp;<br />

</td>

<td colspan="4" style="width: 72%;">

 

 

<div style="position: relative; top:20%;left:14%;right:14%; width:72%">

<asp:ContentPlaceHolder ID="Contentplaceholder2" runat="server">

</asp:ContentPlaceHolder>

</div>

 

 

</td>

<td style="width: 14%; background-color: silver;">

&nbsp;</td>

</tr>

<tr>

<td style="width: 14%; height: 10%; background-color: silver;">

</td>

<td style="width: 60px; height: 30px">

</td>

<td style="width: 40%; height: 10%">

</td>

<td style="width: 72%; height: 10%">

</td>

<td style="width: 60px; height: 30px">

</td>

<td style="width: 14%; height: 10%; background-color: silver;">

</td>

</tr>

</table>

&nbsp;

</div>

</div>

</form>

</body>

</html>

home2.aspx

<%@ Page Language="VB" MasterPageFile="~/MasterPage2.master" Title="Untitled Page" %>

<asp:Content ID="Content1" ContentPlaceHolderID="Contentplaceholder2" Runat="Server">

<iframe id="iFrame" src="http://msn.com" width ="100%" height ="100%" runat="server"/>

</

asp:Content>

Note: Asp.net doesn't require ending tag such as </iframe> it accepts inserting a "/" before the ">".  That's what my VS intellisense suggests anyway.

Mark Gagnon
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/15/2006 2:26:52 AM

0/0

Ok, here are my master page and child page codes

MasterPage2.master

<%@ Master Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<script runat="server">

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

<title>Untitled Page</title>

<script language="javascript" type="text/javascript">

// <!CDATA[

function TABLE1_onclick() {

}

// ]]>

</script>

</head>

<body>

<form id="form1" runat="server">

<div>

<div>

<table style="width: 100%; border-top-style: none; border-right-style: none;

border-left-style: none; border-collapse: collapse; height: 100%; border-bottom-style: none" id="TABLE1" onclick="return TABLE1_onclick()">

<tr>

<td style="width: 14%; height: 10%; background-color: silver">

</td>

<td style="width: 60px; height: 60px; background-color: red; background-position: left top; background-image: url(images/60by60 rounded top left corner.GIF); background-repeat: no-repeat;">

</td>

<td style="width: 6%; height: 10%; background-color: red">

</td>

<td style="width: 6%; height: 10%; background-color: red">

</td>

<td style="width: 60px; height: 60px; background-color: red; background-position: right top; background-image: url(images/60by60 rounded top right corner.GIF); background-repeat: no-repeat;">

</td>

<td style="width: 14%; height: 10%; background-color: silver">

</td>

</tr>

<tr>

<td style="width: 14%; background-repeat: no-repeat;

height: 10%; background-color: silver;">

</td>

<td style="background-image: url(images/60by60 rounded bottom left corner.GIF); width: 60px;

background-repeat: no-repeat; height: 60px; background-position: left bottom; background-color: red;">

</td>

<td style="background-position: left top; width: 6%; background-repeat: no-repeat;

height: 10%; background-color: red">

</td>

<td style="background-position: left top; width: 6%;

background-repeat: no-repeat; height: 10%; background-color: red;">

</td>

<td style="background-position: right bottom; background-image: url(images/60by60 rounded bottom right corner.GIF); width: 60px;

background-repeat: no-repeat; height: 60px; background-color: red;">

</td>

<td style="width: 14%; background-repeat: repeat-x;

height: 10%; background-color: silver;">

</td>

</tr>

<tr>

<td style="width: 14%; background-color: silver;">

<asp:Menu ID="Menu1" runat="server" BackColor="#F7F6F3" DynamicHorizontalOffset="2"

Font-Names="Verdana" Font-Size="0.8em" ForeColor="Red" StaticSubMenuIndent="10px"

Width="140px">

<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<DynamicHoverStyle BackColor="#7C6F57" ForeColor="White" />

<DynamicMenuStyle BackColor="#F7F6F3" />

<StaticSelectedStyle BackColor="#5D7B9D" />

<DynamicSelectedStyle BackColor="#5D7B9D" ForeColor="AntiqueWhite" />

<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<Items>

<asp:MenuItem Text="Home" Value="New Item"></asp:MenuItem>

<asp:MenuItem Text="Contact Us" Value="Contact Us"></asp:MenuItem>

</Items>

<StaticHoverStyle BackColor="#7C6F57" ForeColor="White" />

</asp:Menu>

&nbsp;<br />

</td>

<td colspan="4" style="width: 72%;">

 

 

<div style="position: relative; top:20%;left:14%;right:14%; width:72%">

<asp:ContentPlaceHolder ID="Contentplaceholder2" runat="server">

</asp:ContentPlaceHolder>

</div>

 

 

</td>

<td style="width: 14%; background-color: silver;">

&nbsp;</td>

</tr>

<tr>

<td style="width: 14%; height: 10%; background-color: silver;">

</td>

<td style="width: 60px; height: 30px">

</td>

<td style="width: 40%; height: 10%">

</td>

<td style="width: 72%; height: 10%">

</td>

<td style="width: 60px; height: 30px">

</td>

<td style="width: 14%; height: 10%; background-color: silver;">

</td>

</tr>

</table>

&nbsp;

</div>

</div>

</form>

</body>

</html>

home2.aspx

<%@ Page Language="VB" MasterPageFile="~/MasterPage2.master" Title="Untitled Page" %>

<asp:Content ID="Content1" ContentPlaceHolderID="Contentplaceholder2" Runat="Server">

<iframe id="iFrame" src="http://msn.com" width ="100%" height ="100%" runat="server"/>

</

asp:Content>

Note: Asp.net doesn't require ending tag such as </iframe> it accepts inserting a "/" before the ">".  That's what my VS intellisense suggests anyway.

Rivelyn
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/15/2006 1:21:11 PM

0/0

OK I got them, I have to finish up a website by the end of today, so I likely won't get to your stuff until a little later, I will post as soon as I can...
Rivelyn
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/15/2006 5:38:56 PM

0/0

This works, haven't compaired to orginal code, but the orginal code did not work in my browser either. You will have to adjust the size of the table, that is about it.

<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<script language="javascript" type="text/javascript">

 

// <!CDATA[

function TABLE1_onclick() {

}

 

// ]]>

</script>

<head runat="server">

<title>Untitled Page</title>

</head>

<body>

<form id="form2" runat="server">

<div>

<div>

<table style="width: 100%; border-top-style: none; border-right-style: none;

border-left-style: none; border-collapse: collapse; height: 100%; border-bottom-style: none" id="TABLE1" onclick="return TABLE1_onclick()">

 

<tr>

<td style="width: 14%; height: 10%; background-color: silver">

</td>

<td style="width: 60px; height: 60px; background-color: red; background-position: left top; background-image: url(images/60by60 rounded top left corner.GIF); background-repeat: no-repeat;">

</td>

<td style="width: 6%; height: 10%; background-color: red">

</td>

<td style="width: 6%; height: 10%; background-color: red">

</td>

<td style="width: 60px; height: 60px; background-color: red; background-position: right top; background-image: url(images/60by60 rounded top right corner.GIF); background-repeat: no-repeat;">

</td>

<td style="width: 14%; height: 10%; background-color: silver">

</td>

</tr>

<tr>

<td style="width: 14%; background-repeat: no-repeat;

height: 10%; background-color: silver;">

 

</td>

<td style="background-image: url(images/60by60 rounded bottom left corner.GIF); width: 60px;

background-repeat: no-repeat; height: 60px; background-position: left bottom; background-color: red;">

 

</td>

<td style="background-position: left top; width: 6%; background-repeat: no-repeat;

height: 10%; background-color: red">

 

</td>

<td style="background-position: left top; width: 6%;

background-repeat: no-repeat; height: 10%; background-color: red;">

 

</td>

<td style="background-position: right bottom; background-image: url(images/60by60 rounded bottom right corner.GIF); width: 60px;

background-repeat: no-repeat; height: 60px; background-color: red;">

 

</td>

<td style="width: 14%; background-repeat: repeat-x;

height: 10%; background-color: silver;">

 

</td>

</tr>

<tr>

<td style="width: 14%; background-color: silver; height: 351px;">

<asp:Menu ID="Menu1" runat="server" BackColor="#F7F6F3" DynamicHorizontalOffset="2"

Font-Names="Verdana" Font-Size="0.8em" ForeColor="Red" StaticSubMenuIndent="10px"

Width="140px">

<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<DynamicHoverStyle BackColor="#7C6F57" ForeColor="White" />

<DynamicMenuStyle BackColor="#F7F6F3" />

<StaticSelectedStyle BackColor="#5D7B9D" />

<DynamicSelectedStyle BackColor="#5D7B9D" ForeColor="AntiqueWhite" />

<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<Items>

<asp:MenuItem Text="Home" Value="New Item"></asp:MenuItem>

<asp:MenuItem Text="Contact Us" Value="Contact Us"></asp:MenuItem>

</Items>

<StaticHoverStyle BackColor="#7C6F57" ForeColor="White" />

</asp:Menu>

&nbsp;<br />

</td>

<td colspan="4" style="width: 700px; height: 500px;" align="left" valign="top">

<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">

</asp:ContentPlaceHolder>

 

 

</td>

<td style="width: 14%; background-color: silver; height: 351px;">

&nbsp;</td>

</tr>

<tr>

<td style="width: 14%; height: 10%; background-color: silver;">

</td>

<td style="width: 60px; height: 30px">

</td>

<td style="width: 40%; height: 10%">

</td>

<td style="width: 72%; height: 10%">

</td>

<td style="width: 60px; height: 30px">

</td>

<td style="width: 14%; height: 10%; background-color: silver;">

</td>

</tr>

</table>

&nbsp;

</div>

</div>

</form>

</body>

</html>

-----------------------------------------------------------------------------------------------------------------------------------------------------------------

<%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" title="Untitled Page" %>

<asp:Content ID="Content1" ContentPlaceHolderID="Contentplaceholder1" Runat="Server">

<iframe id="iFrame" src="http://msn.com" width ="100%" height ="100%" runat="server"/>

</asp:Content>

Rivelyn
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/15/2006 5:38:59 PM

0/0

This works, haven't compaired to orginal code, but the orginal code did not work in my browser either. You will have to adjust the size of the table, that is about it.

<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<script language="javascript" type="text/javascript">

 

// <!CDATA[

function TABLE1_onclick() {

}

 

// ]]>

</script>

<head runat="server">

<title>Untitled Page</title>

</head>

<body>

<form id="form2" runat="server">

<div>

<div>

<table style="width: 100%; border-top-style: none; border-right-style: none;

border-left-style: none; border-collapse: collapse; height: 100%; border-bottom-style: none" id="TABLE1" onclick="return TABLE1_onclick()">

 

<tr>

<td style="width: 14%; height: 10%; background-color: silver">

</td>

<td style="width: 60px; height: 60px; background-color: red; background-position: left top; background-image: url(images/60by60 rounded top left corner.GIF); background-repeat: no-repeat;">

</td>

<td style="width: 6%; height: 10%; background-color: red">

</td>

<td style="width: 6%; height: 10%; background-color: red">

</td>

<td style="width: 60px; height: 60px; background-color: red; background-position: right top; background-image: url(images/60by60 rounded top right corner.GIF); background-repeat: no-repeat;">

</td>

<td style="width: 14%; height: 10%; background-color: silver">

</td>

</tr>

<tr>

<td style="width: 14%; background-repeat: no-repeat;

height: 10%; background-color: silver;">

 

</td>

<td style="background-image: url(images/60by60 rounded bottom left corner.GIF); width: 60px;

background-repeat: no-repeat; height: 60px; background-position: left bottom; background-color: red;">

 

</td>

<td style="background-position: left top; width: 6%; background-repeat: no-repeat;

height: 10%; background-color: red">

 

</td>

<td style="background-position: left top; width: 6%;

background-repeat: no-repeat; height: 10%; background-color: red;">

 

</td>

<td style="background-position: right bottom; background-image: url(images/60by60 rounded bottom right corner.GIF); width: 60px;

background-repeat: no-repeat; height: 60px; background-color: red;">

 

</td>

<td style="width: 14%; background-repeat: repeat-x;

height: 10%; background-color: silver;">

 

</td>

</tr>

<tr>

<td style="width: 14%; background-color: silver; height: 351px;">

<asp:Menu ID="Menu1" runat="server" BackColor="#F7F6F3" DynamicHorizontalOffset="2"

Font-Names="Verdana" Font-Size="0.8em" ForeColor="Red" StaticSubMenuIndent="10px"

Width="140px">

<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<DynamicHoverStyle BackColor="#7C6F57" ForeColor="White" />

<DynamicMenuStyle BackColor="#F7F6F3" />

<StaticSelectedStyle BackColor="#5D7B9D" />

<DynamicSelectedStyle BackColor="#5D7B9D" ForeColor="AntiqueWhite" />

<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<Items>

<asp:MenuItem Text="Home" Value="New Item"></asp:MenuItem>

<asp:MenuItem Text="Contact Us" Value="Contact Us"></asp:MenuItem>

</Items>

<StaticHoverStyle BackColor="#7C6F57" ForeColor="White" />

</asp:Menu>

&nbsp;<br />

</td>

<td colspan="4" style="width: 700px; height: 500px;" align="left" valign="top">

<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">

</asp:ContentPlaceHolder>

 

 

</td>

<td style="width: 14%; background-color: silver; height: 351px;">

&nbsp;</td>

</tr>

<tr>

<td style="width: 14%; height: 10%; background-color: silver;">

</td>

<td style="width: 60px; height: 30px">

</td>

<td style="width: 40%; height: 10%">

</td>

<td style="width: 72%; height: 10%">

</td>

<td style="width: 60px; height: 30px">

</td>

<td style="width: 14%; height: 10%; background-color: silver;">

</td>

</tr>

</table>

&nbsp;

</div>

</div>

</form>

</body>

</html>

-----------------------------------------------------------------------------------------------------------------------------------------------------------------

<%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" title="Untitled Page" %>

<asp:Content ID="Content1" ContentPlaceHolderID="Contentplaceholder1" Runat="Server">

<iframe id="iFrame" src="http://msn.com" width ="100%" height ="100%" runat="server"/>

</asp:Content>

Mark Gagnon
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/15/2006 9:10:34 PM

0/0

Got it to work, thank you.  I compared the working code to the original code and it seems that the page directives are different.  In example, "Inherits="_default"" is one thing that sticks out being different.  Also, your vb code is separated into files unlike the original.  Thank you again for your help.
Rivelyn
Asp.Net User
Re: Error loading iframe into contentplaceholder!9/15/2006 9:12:22 PM

0/0

Your welcome, I do what I can when I can in hopes that others return the favours :-)
14 Items, 1 Pages 1 |< << Go >> >|


Free Download:


Web:
how to render html file in a server control ContentPlaceHolder ... the method below is an appropriate to insert different html file into a contentplaceholder according to cultureinfo. Can anyone point out why it is happening? Please suggest me an alternative code to embed an aspx page into ...
TheMSsForum.com >> Asp >> HoverMenuExtender Popup dynamic data ... Because if i just compile my application in 64 bit platform fin 32 bit machine and then deploy to 64 bit servers, i do get error loading ...
Easily Convert An Existing Web Form to a Web Content Form (with a ... Oct 8, 2008 ... The easiest and more error free to do this is to create a new blank Web Content ... Loading URL in iframe Programmatically on Postback in C# ...




Search This Site:










sql server 2005 integrated security question

www. vs. non-www

could not connect to database

complex web parts controls

securing business components

security issues

where is the staticmenuitemdisabledstyle property?

encryption key as string?

can i use css to control a modules font?

can't convert vs2005 asp.net apps to vs2008

compile without vs2005

need help?

scroll in dnn ???

i get this error : compiler error message bc30002.

invisible hierarchical tabs

heeeelp module install problem

categorizing the news-section

v3.0.x preview issue

so..anyone try to shove the db into mysql 5 yet?

thumbnail module

authentification for roles does not work

can't dowload the gcn from www.gotdotnet.com

blocking indivdual ip's and ranges

how to get file access

selective module visibility

lastactivitydate is in utc

phpnuke forum to a dnn forum migration, can it be done?

pager meets css question

server error in '/portalcsvs' application...

editorzone for each web part

 
All Times Are GMT