473,796 Members | 2,632 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

simulating MDI in ASP.NET

The IT Manager where I'm working prizes "no touch" deployment
above all else. The instructions I've been given are basically
this: if it's possible in ASP.NET, write it in ASP.NET; use
WinForms only as a last resort.

One of the departments has specified that they need to have
multiple Customer records open at the same time, in different
windows. If they're handling a call from CustomerA and another
call comes in from CustomerB, they need to put CustomerA on hold
and open CustomerB's record, etc etc.

Any suggestions for simulating MDI in ASP.NET?

Thanks!
Timo

Nov 18 '05 #1
6 1441
In ASP.NET your code is rendered by a web browser. I don't thing there is a
browser that implements MDI. What you should rather do is to open customer
records in a separate browser window. You can achieve it on client side
using JavaScript call window.open (...).

Eliyahu

"Timo" <ti**@noneofyer .biz> wrote in message
news:MP******** *************** *@msnews.micros oft.com...
The IT Manager where I'm working prizes "no touch" deployment
above all else. The instructions I've been given are basically
this: if it's possible in ASP.NET, write it in ASP.NET; use
WinForms only as a last resort.

One of the departments has specified that they need to have
multiple Customer records open at the same time, in different
windows. If they're handling a call from CustomerA and another
call comes in from CustomerB, they need to put CustomerA on hold
and open CustomerB's record, etc etc.

Any suggestions for simulating MDI in ASP.NET?

Thanks!
Timo

Nov 18 '05 #2
Hi Eliyahu,
Thanks for the reply. Window.open with javascript can certainly
open multiple windows, but I was thinking perhaps there was a
custom control that simulated MDI using multiple panes inside a
single webform or something like that. I was also hoping it might
be possible to get the panes to move around the screen using drag-
drop if such a control implemented CSOM (which is beyond my
programming experience) or to have one of these pseudo-forms
superimposed upon another using z-index. BTW, this would not have
to be a cross-browser solution; we're using IE6.
Timo
In article <#2************ **@TK2MSFTNGP09 .phx.gbl>,
re************* @monarchmed.com writes...
In ASP.NET your code is rendered by a web browser. I don't thing there is a
browser that implements MDI. What you should rather do is to open customer
records in a separate browser window. You can achieve it on client side
using JavaScript call window.open (...).

Eliyahu

"Timo" <ti**@noneofyer .biz> wrote in message
news:MP******* *************** **@msnews.micro soft.com...
The IT Manager where I'm working prizes "no touch" deployment
above all else. The instructions I've been given are basically
this: if it's possible in ASP.NET, write it in ASP.NET; use
WinForms only as a last resort.

One of the departments has specified that they need to have
multiple Customer records open at the same time, in different
windows. If they're handling a call from CustomerA and another
call comes in from CustomerB, they need to put CustomerA on hold
and open CustomerB's record, etc etc.

Any suggestions for simulating MDI in ASP.NET?

Thanks!
Timo


Nov 18 '05 #3
You might be able to do this with IFrames. I suspect, however, that to
achieve the results you really want will require a bit of DHTML coding.

"Timo" <ti**@noneofyer .biz> wrote in message
news:MP******** *************** *@msnews.micros oft.com...
The IT Manager where I'm working prizes "no touch" deployment
above all else. The instructions I've been given are basically
this: if it's possible in ASP.NET, write it in ASP.NET; use
WinForms only as a last resort.

One of the departments has specified that they need to have
multiple Customer records open at the same time, in different
windows. If they're handling a call from CustomerA and another
call comes in from CustomerB, they need to put CustomerA on hold
and open CustomerB's record, etc etc.

Any suggestions for simulating MDI in ASP.NET?

Thanks!
Timo

Nov 18 '05 #4
Web-based applications have their own GUI culture, it is not a good idea to
make a web application look and feel exactly as a Windows one. I remember
early 90s when Windows started taking over MS-DOS. Imagine a Windows program
that would look exactly as MS-DOS one.

Eliyahu

"Timo" <ti**@noneofyer .biz> wrote in message
news:MP******** *************** *@msnews.micros oft.com...
Hi Eliyahu,
Thanks for the reply. Window.open with javascript can certainly
open multiple windows, but I was thinking perhaps there was a
custom control that simulated MDI using multiple panes inside a
single webform or something like that. I was also hoping it might
be possible to get the panes to move around the screen using drag-
drop if such a control implemented CSOM (which is beyond my
programming experience) or to have one of these pseudo-forms
superimposed upon another using z-index. BTW, this would not have
to be a cross-browser solution; we're using IE6.
Timo
In article <#2************ **@TK2MSFTNGP09 .phx.gbl>,
re************* @monarchmed.com writes...
In ASP.NET your code is rendered by a web browser. I don't thing there is abrowser that implements MDI. What you should rather do is to open customerrecords in a separate browser window. You can achieve it on client side
using JavaScript call window.open (...).

Eliyahu

"Timo" <ti**@noneofyer .biz> wrote in message
news:MP******* *************** **@msnews.micro soft.com...
The IT Manager where I'm working prizes "no touch" deployment
above all else. The instructions I've been given are basically
this: if it's possible in ASP.NET, write it in ASP.NET; use
WinForms only as a last resort.

One of the departments has specified that they need to have
multiple Customer records open at the same time, in different
windows. If they're handling a call from CustomerA and another
call comes in from CustomerB, they need to put CustomerA on hold
and open CustomerB's record, etc etc.

Any suggestions for simulating MDI in ASP.NET?

Thanks!
Timo


Nov 18 '05 #5
Using Framesets is similar to MDI in some respects (although you should know
that Frames need to be used in moderation).
Obviously that won't give you the movability, but then you might want to
reconsider whether that would provide the best user experience anyway.
Many people would find it confusing/annoying.

"Timo" <ti**@noneofyer .biz> wrote in message
news:MP******** *************** *@msnews.micros oft.com...
Hi Eliyahu,
Thanks for the reply. Window.open with javascript can certainly
open multiple windows, but I was thinking perhaps there was a
custom control that simulated MDI using multiple panes inside a
single webform or something like that. I was also hoping it might
be possible to get the panes to move around the screen using drag-
drop if such a control implemented CSOM (which is beyond my
programming experience) or to have one of these pseudo-forms
superimposed upon another using z-index. BTW, this would not have
to be a cross-browser solution; we're using IE6.
Timo
In article <#2************ **@TK2MSFTNGP09 .phx.gbl>,
re************* @monarchmed.com writes...
In ASP.NET your code is rendered by a web browser. I don't thing there is abrowser that implements MDI. What you should rather do is to open customerrecords in a separate browser window. You can achieve it on client side
using JavaScript call window.open (...).

Eliyahu

"Timo" <ti**@noneofyer .biz> wrote in message
news:MP******* *************** **@msnews.micro soft.com...
The IT Manager where I'm working prizes "no touch" deployment
above all else. The instructions I've been given are basically
this: if it's possible in ASP.NET, write it in ASP.NET; use
WinForms only as a last resort.

One of the departments has specified that they need to have
multiple Customer records open at the same time, in different
windows. If they're handling a call from CustomerA and another
call comes in from CustomerB, they need to put CustomerA on hold
and open CustomerB's record, etc etc.

Any suggestions for simulating MDI in ASP.NET?

Thanks!
Timo


Nov 18 '05 #6

Timo,

First, I would ask around to see if Citrix is in house.
I'm in a similar situation concerning the deploymnet issue,
and to me it often makes more sense to put complex window apps on a
server rather than try to replace them with browser apps.

On the other hand, one possible take on your problem would be to create
a User Control to hold the customer info, and
set up a page where you could hold multiple copies (hopefully not too
many) of this control. Then you could populate them and make them
visible as you worked with the customers. If they're on the same page
you could toggle the visibility of each control without losing the info.

Jim
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #7

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

Similar topics

0
1632
by: lawrence | last post by:
In Java one is supposed to upcast an object to its interface whenever appropriate: MyInterface customers = new MySpecificClass(); The idea is that if later one wants to change the specific implementation one only has to change a few lines, possibly just the one line above. Thus the code becomes more flexible. Is it right to say that there is no way to do this in PHP? I've taken
1
2381
by: Barb | last post by:
I'm simulating keyboard input in Visual C++ using the SendInput function. It seems to work fine for all characters (A-Z, 0-9). I am however having real problems trying to read other characters such as: - = \ ; ' , . / I am trying to grab the character by using VkKeyScan( '=' ). If I use either VK_OEM_2 or VK_COMMA, they are not recognized. If I pass their value as the input it simulates other input (opening different applications as it...
3
395
by: jimif_fr | last post by:
How is it possible to simulate the keyboard entries (and the mouse events) of one program, from another program. The first program is not written for this purpose and is a not aware of the simulation.
47
7630
by: Lauren Quantrell | last post by:
I have constructed the following code that simulates the common rollover effect when moving the mouse over a label (this example makes the label bold.) I'm wondering if anyone has come up with a better solution. lq 'start code:
20
10829
by: Robert | last post by:
Need some help to stop me going around in circles on this one.... Have a nested subform (subform2) which simulates a continuous form for the record on the parent subform. Subform2 has rows of either an option button plus two text fields or a checkbox plus two text fields Am wanting to save the user entries into an underlying table. Tag property for each option button, check box or text field has the value of the key
4
13857
by: Roger Withnell | last post by:
I would like to freeze column and row headings on a webpage, simulating freeze panes as in an Excel spreadsheet. Don't seem to be able to do it with Frames. Is there a way with Javascript and/or CSS and or Frames? Thanks in anticipation.
1
3423
by: Laurence | last post by:
Hi folks, I did "cat /etc/hosts /dev/kmem" on AIX v5.3 TL5 SP4 for simulating the system crash. But, it didn't work. The error message was shown below: cat: 0652-054 Cannot write to output. A memory address is not in the address space for the process. Anyone experience that? And, how to solve that?
9
1786
by: chikkubhai | last post by:
Why is the result different for the following set of two code snippets Code without using this pointer #include <string> #include <iostream> using namespace std; struct X { private:
7
4192
by: =?Utf-8?B?VG9tIEJvbWJhZGls?= | last post by:
Question: Can an outer non-equijoin be simulated using LINQ? It's quite unfortunate that LINQ doesn't support literal joins based on anything other than equality. I know that this the most common scenario, and although the efficiency of other types of joins is often debatable, they are often darned useful. In T-SQL I have dozens of such useful queries with joins based on such operations as prefix or suffix comparisons (using the LIKE...
0
9685
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
9533
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
10461
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
10239
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10190
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10019
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...
0
9057
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6796
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();...
3
2928
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.