CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums

MS SQL 2008 on ASP.NET Hosting



Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.portal_starter_kit Tags:
Item Type: NewsGroup Date Entered: 6/23/2003 11:39:54 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 15 Views: 16 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
16 Items, 1 Pages 1 |< << Go >> >|
ukdeluded
Asp.Net User
ASP Application6/23/2003 11:39:54 AM

0/0

Hi, I have quite a large ASP application that would be almost impossible to port to ASP.NET. What I want to do is have one of the IBuySpy Portal top navigation menus open the old application as a frame within the page so it looks like part of the portal.
Is this possible?

Thanks!
ukdeluded
Asp.Net User
Re: ASP Application6/23/2003 11:50:18 PM

0/0

I've found loads of references to iframe but do not quite understand what this is. If you have a URL I could follow that explains it, I'll be your friend forever and call you George. Even if it's not your name. Just because I care!!
davidgmiles
Asp.Net User
Re: ASP Application6/24/2003 8:10:37 AM

0/0

An IFrame is an inline frame - only supported by Internet Explorer 4+, Konqueror, Netscape 6 and later versions of Opera - it is a window within a page to another page

It is not supported by Netscape 4.x and will not appear in any fashion, consideration of this should be made when deploying the module.

There is a module available on Snowcovered for such an implementation - apologies for a shameless plug here - written by myself - that allows you to easily drop such a thing into the portal

DavidM
Various IBS Addons available at http://www.snowcovered.com

Lead Developer [vb & c#] - MCAD
scottrait
Asp.Net User
Re: ASP Application6/24/2003 1:05:41 PM

0/0

Is there a way to modify your IFrame module so that it auto sizes? I am using a module simular to yours and it does indeed add scrollbars if the page does not fit, but then you can't print the entire page. I have pulled what little hair I have left trying to get auto sizing to work. If your module auto sizes or gives you a printer friendly option it would be perfect for my needs.
davidgmiles
Asp.Net User
Re: ASP Application6/24/2003 1:07:58 PM

0/0

As far as I know that is something that is not possible in an IFrame - I too spent much time trying to get autosizing working

DavidM
Various IBS Addons available at http://www.snowcovered.com

Lead Developer [vb & c#] - MCAD
scottrait
Asp.Net User
Re: ASP Application6/24/2003 1:11:39 PM

0/0

Do you know if it's possible to add a "printer friendly" option that would print the content of the IFrame? If so, if you could point me in the right direction I would really appreciate it. I'm pretty new at this and this is the last hurdle I need to cross to implement my portal.
wunderkinder
Asp.Net User
Re: ASP Application6/24/2003 4:37:11 PM

0/0

You should be able to reference the IFRAME using javascript the same way you would reference any other "normal" frames.

In your page (ascx or aspx) code, include a print button:

<asp:linkbutton id="PrintButton" runat="server" Text="Print this document" BorderStyle="none" CssClass="CommandButton"></asp:linkbutton>

Then, in your vb, add this to the Page_Load sub:

PrintButton.Attributes.Add("onClick", "javascript:window.IFRAME_NAME.print();")

Jared Livingston
MrLivingston.com - Livingston Family Website

Test/Demo site - moonmark.com
ukdeluded
Asp.Net User
Re: ASP Application6/26/2003 2:23:52 PM

0/0

I just cannot get iFrame to compile at all after having brought it from snowcovered. It just keeps giving me errors - nothing is defined at all. I have tried the compile scripts on snowcovered but again with no joy.

I have no idea if the iFrame module works!!!!!
scottrait
Asp.Net User
Re: ASP Application6/26/2003 3:42:30 PM

0/0

I have not tried the Iframe module from snowcovered (although given David's expertise, I'm sure it's top notch!), but I'm using one Nemi turned me on to available at http://ikarus.gotdns.org and it works great. Speaking of plugs . . . David and Nemi, you guys are awesome! Thanks for all the help!!!!
davidgmiles
Asp.Net User
Re: ASP Application6/26/2003 4:01:08 PM

0/0

I can assure you the IFrame module does work - it was written for the code-behind model of the portal - as you know I have offered support via both email and the Snowcovered support desk - I admit I am not au fait with the SDK compilation options, instead having done all my work in Visual Studio - each other time I have encountered issues with an SDK user, it has been an issue with the compilation scripts - as such I pointed you at the compilation scripts from Snowcovered, I am 100% certain it is not compiling due to a missing reference, and as such when you try to load the control, it correctly tells you that IFrame does not exist in the portal dll, due to the fact that it has not yet compiled the DLL correctly.

Can you detail the build errors that you are recieving when attempting to build the portal

DavidM
Various IBS Addons available at http://www.snowcovered.com

Lead Developer [vb & c#] - MCAD
davidgmiles
Asp.Net User
Re: ASP Application6/26/2003 4:17:09 PM

0/0

Cheers for the compliments to both me and Nemi, Scott.

Appreciated but dont forget the others Jared, MBeller, Steve (Dickies), Tom Lucas, Jon (DotNetSites) - and others I no doubt missed in that small list - good kudos all around

DavidM
Various IBS Addons available at http://www.snowcovered.com

Lead Developer [vb & c#] - MCAD
cchhtt
Asp.Net User
Re: ASP Application6/29/2003 7:31:31 AM

0/0

IFrame can be resized only if Iframe is at the bottom of the page.
cchhtt
Asp.Net User
Re: ASP Application6/29/2003 7:38:45 AM

0/0

Iframe can be automatically resized.
try the following code:

<html>
<body leftmargin="0" bottommargin="0" rightmargin="0" topmargin="0" marginheight="0" marginwidth="0">
<table width="100%" height="100%">
<tr>
<td>
100
</td>
</tr>
<tr>
<td height="100%">
<iframe src="http://www.usc.edu" width="100%" height="100%"/>
</td>
</tr>
</table>
</body>
</html>

To automatically resize, iframe should always to be put at the bottom.
davidgmiles
Asp.Net User
Re: ASP Application6/29/2003 7:57:04 AM

0/0

When I was refering to autosizing, I have been looking at getting it to size to it's content not the containing page - which takes a lot of jiggery pockery with javascript and is not worth it in the end - setting it to 100% height makes it fill the remaining space on the containing page

DavidM
Various IBS Addons available at http://www.snowcovered.com

Lead Developer [vb & c#] - MCAD
cchhtt
Asp.Net User
Re: ASP Application6/29/2003 5:18:44 PM

0/0

I think it is the limitation of all frames. Frame can only be resized to a fixed width/height or to a percentage width/height. I used to try to use System.Net to parse the inside content of the frame, it ends up that it can only parse very simple HTML content and make it not useful.
ukdeluded
Asp.Net User
Re: ASP Application8/20/2003 10:16:18 AM

0/0

Just need to say (and sorry this is late) that I have iFrame working fine and can plug it to anyone - it does exactly what it says on the tin!!!

The one thing (and I don't think this is possible unless I don't understand the discussion above) is that I often end up with either two scroll bars or a framed module where you have to move to the edge of the Portal area (outside of the framed page) to use the mouse wheel to scroll.

This is not having a dig at the app at all - I think this is fantastic work and it has solved a number of issues I had - I was more than happy to purchase it through snowcovered.

Cheers!
16 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
ASP in a Nutshell: A Desktop Quick Reference Authors: A. Keyton Weissinger, Pages: 473, Published: 2000
ASP--application Service Providing: The Ultimate Guide to Hiring Rather Than Buying Applications Authors: SCN Education B.V., SCN Education Bv, Scn Education B. V., Pages: 320, Published: 2000
Hacking the Code: ASP.NET Web Application Security Authors: Mark Burnett, James C. Foster, Pages: 447, Published: 2004
Hacking the Code ASP.NET Web Application Security Authors: Mark Burnett, James C Foster, Pages: 0, Published: 2004
Programming .NET Security Authors: Adam Freeman, Allen Jones, Pages: 693, Published: -1
ASP (Application Service Provider) Configuration Handbook Authors: Elsevier Science & Technology Books, Inc NetLibrary, Pages: 0, Published: 2001
Professional DotNetNuke 4: Open Source Web Application Framework for ASP.NET 2.0 Authors: Shaun Walker, Joe Brinkman, Bruce Hopkins, Scott McCulloch, Patrick J. Santry, Chris Paterra, Scott Willhite, Dan Caron, Pages: 517, Published: 2006
VBScript in a Nutshell: A Desktop Quick Reference Authors: Paul Lomax, Matt Childs, Ron Petrusha, Pages: 512, Published: 2003
Beginning MySQL Authors: Robert Sheldon, Geoff Moes, Pages: 840, Published: 2005
Expert ASP.NET 2.0 Advanced Application Design: Advanced Application Design Authors: Dominic Selly, Andrew Troelsen, Tom Barnaby, Pages: 459, Published: 2005

Web:
Application service provider - Wikipedia, the free encyclopedia An application service provider (ASP) is a business that provides computer-based services to customers over a network. Software offered using an ASP model ...
ASP Application object A group of ASP files that work together to perform some purpose is called an application. The Application object in ASP is used to tie these files together. ...
Aspin: ASP Script, Code, Application, ASP Web Applications, Search This Category contains pages linking to various ASP web applications. Date & time, calendar, chat, search, and content management applications are available ...
ASP.NET Application Life Cycle Overview for IIS 5.0 and 6.0 This topic outlines the life cycle of ASP.NET applications, listing important life-cycle events and describing how code that you write can fit into the ...
PHP Web Development India PHP ASP.NET Application Development Web ... Offshore PHP Web Development India PHP Programming ASP.NET Application Development India.Web development India PHP programmers hire ASP.net developers india ...
ASP.NET AJAX In-Depth: Application Events - Stephen Walther on ASP ... The important thing to notice here is that an ASP.NET AJAX application can only be ..... This call causes the ASP.NET Application to initialize before the ...
ASP.NET MVC Application Building: Family Video Website #5 ... Oct 2, 2008 ... In this series of tutorials, I build an entire ASP.NET MVC application from start to finish. In this entry, I add a Silverlight file upload ...
Advanced Web Application Development using Microsoft ASP.NET ... This three-day, instructor-led course provides students with the knowledge and skills that are needed to successfully design and implement Web applications ...
How to define an ASP.NET application in IIS bin - This directory, found just off the root of the web application, is used to hold the application's ASP.NET assemblies. An assembly is a component of ...
"What is 'ASP' (Application Service Provider)?" The people at the office keep talking about "ASP's will reduce our costs" and " you'll love the new ASP tool we just bought". But what exactly does all this ...

Videos:
Video glosario eCommerce - ASP Application Service Provider Video glosario comercio electrónico - ASP (Application Service Provider) ASP iniciales de las palabras en inglés Application Service Provider en espa...
Sending sms from web application-ASP.net & C#-malay (2/4) This video tutorial is about how to send sms from web application using ASP.net and C# with the help of API provided by a website called eternalsolut...
Developing ASP.NET 2.0 Applications using AJAX Developing ASP.NET 2.0 Applications using AJAX
Sending sms from web application using ASP.net and C# (1/4) This video tutorial is about how to send sms from web application using ASP.net and C# with the help of API provided by a website called eternalsolut...
Architectural Considerations for ASP.NET MVC Dependency Injection can help decouple the application and make your code more maintainable and testable, but how do you enable this? Join Tatham Odd...
Developing great applications with ASP.NET MVC and ASP.NET AJAX ASP.NET MVC and ASP.NET AJAX presentation from Remix Australia 2008. Presented by Tatham Oddie in Sydney on 20th May 2008.
Sending sms from web application-ASP.net & C#-malay (3/4) This video tutorial is about how to send sms from web application using ASP.net and C# with the help of API provided by a website called eternalsolut...
Sending sms from web application using ASP.net and C# (2/4) This video tutorial is about how to send sms from web application using ASP.net and C# with the help of API provided by a website called eternalsolut...
.NET Technologies - Programming in ASP.NET Microsoft .NET technologies are ubiquitous. In this webinar learn about the market conditions of .NET professionals, the opportunities available. See...
Sending sms from web application using ASP.net and C# (3/4) This video tutorial is about how to send sms from web application using ASP.net and C# with the help of API provided by a website called eternalsolut...




Search This Site:










windows authentication problem

maintain security when switching between websites?

forms authentication (iframe issue)

forced login each page change

code access security? ...application level? ...domain level?

authorising a admin folder

custom membership and profile providers to access legacy user store

that assembly does not allow partially trusted callers

siteminder asp.net authentication

need help related to login

cookies are not shared between multiple ie browsers...

remote sql server

question about roles/forms authentication

differ between internet /intranet users

sign out problem

limiting access based on role

i can save files, but not delete. why?

permissions to a exe file

create user control & user roles

please i need help

why should i use the login control?

access to the path is denied problem

create windows user

how can i identify web server that submit form?

sql server 2000/ membeship/ login

records disappearing out of aspnet_membership table

application not running on iis but running fine on web matrix server???

can a login.aspx form be disabled if called from a form in another folder?

using <authentication> tag within <location> tag of web.config

programatically assigning password textbox

  Privacy | Contact Us
All Times Are GMT