473,794 Members | 2,748 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

using frames in vb.net

Hi,

I have link to the various documents which is stored on the server.
When ever user click on any link, the respective document should be
opened. Here what i need is to have all the links on the left side of
the page and when the user clicks the document should be opened on the
right side of the application.

When googled, some of them told to split the page into two frames, load
the document links in left frame and open the document in right frame
using script.

RIght now iam able to load the links in oone aspx page and open the
document in other aspx page. I need to use single aspx using frames.
Iam not sure how to incorporate this in VB.net...

Any ideas pls??

Your help is appreciated.

Thanks
Srini

Nov 2 '06 #1
4 2826
Hi,

Set in your mainpage html declaration of the framepage part "run at server"
as with the other serverside controls, you can use it than (although it need
some extra work and I don't have an exact example)

Cor

<si************ ****@gmail.coms chreef in bericht
news:11******** *************@h 54g2000cwb.goog legroups.com...
Hi,

I have link to the various documents which is stored on the server.
When ever user click on any link, the respective document should be
opened. Here what i need is to have all the links on the left side of
the page and when the user clicks the document should be opened on the
right side of the application.

When googled, some of them told to split the page into two frames, load
the document links in left frame and open the document in right frame
using script.

RIght now iam able to load the links in oone aspx page and open the
document in other aspx page. I need to use single aspx using frames.
Iam not sure how to incorporate this in VB.net...

Any ideas pls??

Your help is appreciated.

Thanks
Srini

Nov 3 '06 #2
Create a Page with 2 frames left and right .Place some link button on the
left side and specify link for that button and specify the target a right
side frame so it will open only in that frame only
"Cor Ligthert [MVP]" wrote:
Hi,

Set in your mainpage html declaration of the framepage part "run at server"
as with the other serverside controls, you can use it than (although it need
some extra work and I don't have an exact example)

Cor

<si************ ****@gmail.coms chreef in bericht
news:11******** *************@h 54g2000cwb.goog legroups.com...
Hi,

I have link to the various documents which is stored on the server.
When ever user click on any link, the respective document should be
opened. Here what i need is to have all the links on the left side of
the page and when the user clicks the document should be opened on the
right side of the application.

When googled, some of them told to split the page into two frames, load
the document links in left frame and open the document in right frame
using script.

RIght now iam able to load the links in oone aspx page and open the
document in other aspx page. I need to use single aspx using frames.
Iam not sure how to incorporate this in VB.net...

Any ideas pls??

Your help is appreciated.

Thanks
Srini


Nov 3 '06 #3
Prabhakar,

Thanks for your reply and now that i was able to do as you said.
1. Created the html page, divided the page into two frames
2. Created two aspx pages named left and right. Loaded these two pages
in two different frames
3. loaded links in left aspx page, transfered the query string to right
aspx page on pageload event
4. opened the document in right aspx page

now that it is displaying on left aspx page, the respective image is
displayed on right aspx when we click on link button

Make Model Year Link
Honda Civic 2003 linkbutton
Honda Civic 2005 linkbutton
Honda Accord 2003 linkbutton
Toyoto Corolla 2002 linkbutton
Toyoto Camry 2005 linkbutton
Toyoto Celica 2002 linkbutton

The next problem is how to group the similar kind of items on the left
side of the aspx page like tree structure

+Honda
+ Civic
+ 2003
+ 2005
+ Accord
+ 2003
+Toyot
+ Corolla
+ 2003
+ 2005

I dont want to use microsoft webcontrols as it supports only IE for
asp1.1....
Iam using vb.net web app, asp1.1...

Any ideas please....

Thanks
Srini

Prabakar Samiyappan wrote:
Create a Page with 2 frames left and right .Place some link button on the
left side and specify link for that button and specify the target a right
side frame so it will open only in that frame only
"Cor Ligthert [MVP]" wrote:
Hi,

Set in your mainpage html declaration of the framepage part "run at server"
as with the other serverside controls, you can use it than (although it need
some extra work and I don't have an exact example)

Cor

<si************ ****@gmail.coms chreef in bericht
news:11******** *************@h 54g2000cwb.goog legroups.com...
Hi,
>
I have link to the various documents which is stored on the server.
When ever user click on any link, the respective document should be
opened. Here what i need is to have all the links on the left side of
the page and when the user clicks the document should be opened on the
right side of the application.
>
When googled, some of them told to split the page into two frames, load
the document links in left frame and open the document in right frame
using script.
>
RIght now iam able to load the links in oone aspx page and open the
document in other aspx page. I need to use single aspx using frames.
Iam not sure how to incorporate this in VB.net...
>
Any ideas pls??
>
Your help is appreciated.
>
Thanks
Srini
>
Nov 7 '06 #4

si************* ***@gmail.com ¼g¹D¡G
Hi,

I have link to the various documents which is stored on the server.
When ever user click on any link, the respective document should be
opened. Here what i need is to have all the links on the left side of
the page and when the user clicks the document should be opened on the
right side of the application.

When googled, some of them told to split the page into two frames, load
the document links in left frame and open the document in right frame
using script.

RIght now iam able to load the links in oone aspx page and open the
document in other aspx page. I need to use single aspx using frames.
Iam not sure how to incorporate this in VB.net...

Any ideas pls??

Your help is appreciated.

Thanks
Srini
Nov 19 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
4857
by: Jawahar Rajan | last post by:
All, I have an ASP site that uses frames two frames. (yes I should be using include files, but we started ou using frames so we have been stuck with frames.) When I get a page expired warning (I am not caching pages) and a user clicks refresh from the menu bar the user is taken back to the home page! The home page is a frame with a top frame that is repeated on each subsequent asp pages
2
4989
by: your name here | last post by:
I've been trying to get the scrollby javascript feature to scroll through frames. My end goal is to make my own scroll buttons to use for navigation through the frame but I figured I would start simple. I would load a frameset and just move the correct frame by 100 pixels right and 100 pixels down. Here is the code I am using: <html> <script TYPE="text/javascript"> function scrollme()
1
5971
by: Phoenix | last post by:
I have a site that is supposed to be 'real-time' which has a frameset of 2 rows (the bottom row is 1 pixel so essentially invisible to IE users which is the requirement for the product). The bottom frame refreshes using an http-refresh every 15 seconds. If new data is available on the server, it tells the top page to refresh. For checks and balances, the top frame has a form at the bottom of the page with a 'clockBox'..which is essentially...
7
2332
by: David Hayes | last post by:
I tried finding an answer on http://www.quirksmode.org/ without success. I am attempting a complicated Frames structure. I have made it work in IE, but not Netscape. I begin with three frames, where the two lower ones are within a Frameset within the master Frameset: 1111111111111111111
1
2192
by: rbowie | last post by:
Hi there im tryin to nav to a frame using javascript. I have a frameset within a frameset. I want to be able to navigate from the inner most frameset to an outer frame. So frame i have only managed to nav to a frame within the current framset using the following code:
0
1386
by: mookie | last post by:
m looking to create something similar to #region and #endregion using treeviews the problem is that instead of #region, i am using ;fold and ;endfold i am also allowed ot have a fold within a fold and that is where i am stuck. Private Sub rtb_TextChanged(ByVal sender As System.Object, ByVal e As
0
1216
by: thompson_38 | last post by:
Is the difference between calling a HTML page by it location (axWebBrowser.Navigate("C:projecthome\home.htm" ref 0, ref 0, ref 0, ref 0)) and being able to access the frames in that page using public HTMLWindow2 GetFrame(HTMLDocument myDoc, string name) { bool exist = false; HTMLWindow2 frame = null; HTMLWindow2 window = (HTMLWindow2)myDoc.parentWindow;
0
1333
by: hinchb | last post by:
I have coded a Non-CSS menu using IFRAMES which I would like your opinion on. It seems to work in all the browsers I've tested. Do you see any disadvantages in using something like this. Here is the code. <style> #top { position: absolute; left: 4%;
0
9671
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9518
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10433
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10000
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7538
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6777
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4112
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3720
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2919
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.