473,657 Members | 2,661 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Solution design

Hello,

We intend to create an ASP.NET-based Web application (hosted on Internet
Information Services, or IIS) and one feature of the application needs to
allow the end user to upload photos to the server.

However, our customer requests that both of these two objectives to be
supported by the design of the solution:

1. The photos should be encoded as JPG, and resized (if larger than a
maximum adminisible width/height) on the client side, before the actual
upload.

2. The upload (and the whole application) should work on multiple browsers
supported on multiple platforms, running with the default user security
settings (explicit request includes, but are not limited to: Internet
Explorer on Windows and Macintosh, Mozilla Firefox on Windows and other OSes).

The first request would trigger for creating: a .NET-based user control
hosted in Internet Explorer, or a ActiveX component hosted also on the web
site, or a Java applet. Personally, if it weren't for the second request, I'd
choose the first choice (.NET-based user control as it is the most flexible
and uses the advantages of the .NET technologies even on client side).

However, the second request would trigger for Java instead, as .NET (or
COM/ActiveX technologies are not running on the requested platforms/browsers).

For testing purposes, we tried to create a Java applet that was trying to
allow a user to select an image using a FileDialog window, and then trying to
open the image, convert it as required and then upload the resulting bytes
back to the server. This seemed to be OK, but unlike .NET, Java applets do
not allow implicitly to open a file stream on the client host even if it was
selected by a user n a FileDialog window (I know .NET default security
permissions would allow that, because I already used it in another
application). In this case, we tried to sign the applet using the steps
presented by Sun on their Web site due to no avail: an exception
(AccessControlE xception, with access denying on socket creation for getting
the image file from the local client host) was generated even if the jar was
signed (with a test certificate, tough - but even in this case, the browser
should have asked the end user whether or not she trusts the applet and allow
it to run if accepted - at least that's what Sun documentation sais...)

Now, because we feel that a java applet is not an as good idea as we first
thought due to the default security permissions higher than actually
necessary (i.e. reading a file should be allowed if the file was selected by
the user in a FileDialog...), we are back to the design table, and looking
for some advice from anyone else, if available: what do you think? What is
the best approach we could do to meet both of the customer requirements and
still create a nice solution (such as a .NET-only one)? :)

PS: Maybe someone knows where to find a JPEG encoder written entirely in
JScript running on the client with a HTML FileUpload control as the source
for the file, before actually uploading it, or is it something too difficult
to write entirely in JScript?

--
Sorin Dolha, DlhSoft
MCAD, MCSD .NET
Aug 30 '05 #1
3 2006
Hi Sorin,

Welcome to MSDN newsgroup.
Based on your description, I think it would be a bit hard to meet all the
requirements you mentioned. Here are some of my suggestions regarding on
the problems:

1. For this clientside file checking and uploading function, I think we
could not but use rich client components (eg, .net winform control, activex
control, java applet.....). Pure clientside script won't have the ability
to manipulate clientside file or do any web accessing operation.

2.For different target client platform( windows IE/non-IE, non-windows
non-IE), we may consider provide different UI for them. For windows IE
client, of course the best choice is using .NET UserControl. For other
ones, I think you may still consider applet. Also, from a quick search,
there seems has some existing 3rd party applet rich client file uploaders:

http://sourceforge.net/projects/jupload

You can refer to some to see whether they're working in your scenario.
Anyway, if your design is restricted to manipulating(ch ecking size) the
file on the clientside, using those Rich client components are unavoidable.

Please feel free to post here if you have any other ideas or concerns.
Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| Thread-Topic: Solution design
| thread-index: AcWtkSLp/5jhTg5jSH+EU68J UvkjMw==
| X-WBNR-Posting-Host: 80.96.79.16
| From: "=?Utf-8?B?U29yaW4gRG9 saGE=?=" <sd****@communi ty.nospam>
| Subject: Solution design
| Date: Tue, 30 Aug 2005 11:32:11 -0700
| Lines: 58
| Message-ID: <1C************ *************** *******@microso ft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.publi c.dotnet.genera l
| NNTP-Posting-Host: TK2MSFTNGXA03.p hx.gbl 10.40.2.250
| Path: TK2MSFTNGXA01.p hx.gbl!TK2MSFTN GXA03.phx.gbl
| Xref: TK2MSFTNGXA01.p hx.gbl microsoft.publi c.dotnet.genera l:49141
| X-Tomcat-NG: microsoft.publi c.dotnet.genera l
|
| Hello,
|
| We intend to create an ASP.NET-based Web application (hosted on Internet
| Information Services, or IIS) and one feature of the application needs to
| allow the end user to upload photos to the server.
|
| However, our customer requests that both of these two objectives to be
| supported by the design of the solution:
|
| 1. The photos should be encoded as JPG, and resized (if larger than a
| maximum adminisible width/height) on the client side, before the actual
| upload.
|
| 2. The upload (and the whole application) should work on multiple
browsers
| supported on multiple platforms, running with the default user security
| settings (explicit request includes, but are not limited to: Internet
| Explorer on Windows and Macintosh, Mozilla Firefox on Windows and other
OSes).
|
| The first request would trigger for creating: a .NET-based user control
| hosted in Internet Explorer, or a ActiveX component hosted also on the
web
| site, or a Java applet. Personally, if it weren't for the second request,
I'd
| choose the first choice (.NET-based user control as it is the most
flexible
| and uses the advantages of the .NET technologies even on client side).
|
| However, the second request would trigger for Java instead, as .NET (or
| COM/ActiveX technologies are not running on the requested
platforms/browsers).
|
| For testing purposes, we tried to create a Java applet that was trying to
| allow a user to select an image using a FileDialog window, and then
trying to
| open the image, convert it as required and then upload the resulting
bytes
| back to the server. This seemed to be OK, but unlike .NET, Java applets
do
| not allow implicitly to open a file stream on the client host even if it
was
| selected by a user n a FileDialog window (I know .NET default security
| permissions would allow that, because I already used it in another
| application). In this case, we tried to sign the applet using the steps
| presented by Sun on their Web site due to no avail: an exception
| (AccessControlE xception, with access denying on socket creation for
getting
| the image file from the local client host) was generated even if the jar
was
| signed (with a test certificate, tough - but even in this case, the
browser
| should have asked the end user whether or not she trusts the applet and
allow
| it to run if accepted - at least that's what Sun documentation sais...)
|
| Now, because we feel that a java applet is not an as good idea as we
first
| thought due to the default security permissions higher than actually
| necessary (i.e. reading a file should be allowed if the file was selected
by
| the user in a FileDialog...), we are back to the design table, and
looking
| for some advice from anyone else, if available: what do you think? What
is
| the best approach we could do to meet both of the customer requirements
and
| still create a nice solution (such as a .NET-only one)? :)
|
| PS: Maybe someone knows where to find a JPEG encoder written entirely in
| JScript running on the client with a HTML FileUpload control as the
source
| for the file, before actually uploading it, or is it something too
difficult
| to write entirely in JScript?
|
| --
| Sorin Dolha, DlhSoft
| MCAD, MCSD .NET
|

Aug 31 '05 #2
Hello, and thank you for your valuable feedback.

We got some other advice proposing to have two different UIs for
Windows/IE-based and other platforms/other browsers: for Windows/IE we could
create a .NET WinForms control (since WinXP SP2 won't run ActiveX without
user acceptance, and btw our developers are .NET developers anyway, so
ActiveX would not be our best choice, and also Win XP SP2 doesn't have any
Java Virtual Machine by default), and for other platforms/other browsers we
would create a Java applet.

I think that even if we would need to duplicate the functionality in a .NET
control and in a Java applet (which is not nice in a 21st century world but
hey, that's it when we have proprietary compteting tehnologies that are not
using the same standards...), that's the best approach to take to be able to
still use .NET wherever possible (i.e. on Windows machines), and not break
the second requirement for other platforms.

However, running a .NET Windows Forms-based control on Windows XP (hosted in
IE) still requires that the user to install .NET Framework... A suggestion to
Microsoft (that I'm sure was done millions of times by other .NET developers)
would be to include .NET Framework by default, either in the latest SP or as
a mandatory download from Windows Update...

--
Sorin Dolha, DlhSoft
MCAD, MCSD .NET
"Steven Cheng[MSFT]" wrote:
Hi Sorin,

Welcome to MSDN newsgroup.
Based on your description, I think it would be a bit hard to meet all the
requirements you mentioned. Here are some of my suggestions regarding on
the problems:

1. For this clientside file checking and uploading function, I think we
could not but use rich client components (eg, .net winform control, activex
control, java applet.....). Pure clientside script won't have the ability
to manipulate clientside file or do any web accessing operation.

2.For different target client platform( windows IE/non-IE, non-windows
non-IE), we may consider provide different UI for them. For windows IE
client, of course the best choice is using .NET UserControl. For other
ones, I think you may still consider applet. Also, from a quick search,
there seems has some existing 3rd party applet rich client file uploaders:

http://sourceforge.net/projects/jupload

You can refer to some to see whether they're working in your scenario.
Anyway, if your design is restricted to manipulating(ch ecking size) the
file on the clientside, using those Rich client components are unavoidable.

Please feel free to post here if you have any other ideas or concerns.
Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| Thread-Topic: Solution design
| thread-index: AcWtkSLp/5jhTg5jSH+EU68J UvkjMw==
| X-WBNR-Posting-Host: 80.96.79.16
| From: "=?Utf-8?B?U29yaW4gRG9 saGE=?=" <sd****@communi ty.nospam>
| Subject: Solution design
| Date: Tue, 30 Aug 2005 11:32:11 -0700
| Lines: 58
| Message-ID: <1C************ *************** *******@microso ft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.publi c.dotnet.genera l
| NNTP-Posting-Host: TK2MSFTNGXA03.p hx.gbl 10.40.2.250
| Path: TK2MSFTNGXA01.p hx.gbl!TK2MSFTN GXA03.phx.gbl
| Xref: TK2MSFTNGXA01.p hx.gbl microsoft.publi c.dotnet.genera l:49141
| X-Tomcat-NG: microsoft.publi c.dotnet.genera l
|
| Hello,
|
| We intend to create an ASP.NET-based Web application (hosted on Internet
| Information Services, or IIS) and one feature of the application needs to
| allow the end user to upload photos to the server.
|
| However, our customer requests that both of these two objectives to be
| supported by the design of the solution:
|
| 1. The photos should be encoded as JPG, and resized (if larger than a
| maximum adminisible width/height) on the client side, before the actual
| upload.
|
| 2. The upload (and the whole application) should work on multiple
browsers
| supported on multiple platforms, running with the default user security
| settings (explicit request includes, but are not limited to: Internet
| Explorer on Windows and Macintosh, Mozilla Firefox on Windows and other
OSes).
|
| The first request would trigger for creating: a .NET-based user control
| hosted in Internet Explorer, or a ActiveX component hosted also on the
web
| site, or a Java applet. Personally, if it weren't for the second request,
I'd
| choose the first choice (.NET-based user control as it is the most
flexible
| and uses the advantages of the .NET technologies even on client side).
|
| However, the second request would trigger for Java instead, as .NET (or
| COM/ActiveX technologies are not running on the requested
platforms/browsers).
|
| For testing purposes, we tried to create a Java applet that was trying to
| allow a user to select an image using a FileDialog window, and then
trying to
| open the image, convert it as required and then upload the resulting
bytes
| back to the server. This seemed to be OK, but unlike .NET, Java applets
do
| not allow implicitly to open a file stream on the client host even if it
was
| selected by a user n a FileDialog window (I know .NET default security
| permissions would allow that, because I already used it in another
| application). In this case, we tried to sign the applet using the steps
| presented by Sun on their Web site due to no avail: an exception
| (AccessControlE xception, with access denying on socket creation for
getting
| the image file from the local client host) was generated even if the jar
was
| signed (with a test certificate, tough - but even in this case, the
browser
| should have asked the end user whether or not she trusts the applet and
allow
| it to run if accepted - at least that's what Sun documentation sais...)
|
| Now, because we feel that a java applet is not an as good idea as we
first
| thought due to the default security permissions higher than actually
| necessary (i.e. reading a file should be allowed if the file was selected
by
| the user in a FileDialog...), we are back to the design table, and
looking
| for some advice from anyone else, if available: what do you think? What
is
| the best approach we could do to meet both of the customer requirements
and
| still create a nice solution (such as a .NET-only one)? :)
|
| PS: Maybe someone knows where to find a JPEG encoder written entirely in
| JScript running on the client with a HTML FileUpload control as the
source
| for the file, before actually uploading it, or is it something too
difficult
| to write entirely in JScript?
|
| --
| Sorin Dolha, DlhSoft
| MCAD, MCSD .NET
|

Aug 31 '05 #3
Thanks for your response Sorin,

Yes, using different rich client UI component for different target client
platform would be the most appropriate apporach currently. Also, I really
agree with you that MS should include .NET Framework by default, however,
since .NET is still a young guy, it need more time to make it stronger and
sophisticated. Anyway, I'm sure this is a trend.
Also, thank you again for choosing Microsoft and .NET :-)

Good luck!

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| Thread-Topic: Solution design
| thread-index: AcWuVj0xIHyW9PC zTweAKkFIwmfvCQ ==
| X-WBNR-Posting-Host: 80.96.79.16
| From: "=?Utf-8?B?U29yaW4gRG9 saGE=?=" <sd****@communi ty.nospam>
| References: <1C************ *************** *******@microso ft.com>
<2o************ **@TK2MSFTNGXA0 1.phx.gbl>
| Subject: RE: Solution design
| Date: Wed, 31 Aug 2005 11:03:06 -0700
| Lines: 172
| Message-ID: <5E************ *************** *******@microso ft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.publi c.dotnet.genera l
| NNTP-Posting-Host: TK2MSFTNGXA03.p hx.gbl 10.40.2.250
| Path: TK2MSFTNGXA01.p hx.gbl!TK2MSFTN GXA03.phx.gbl
| Xref: TK2MSFTNGXA01.p hx.gbl microsoft.publi c.dotnet.genera l:49223
| X-Tomcat-NG: microsoft.publi c.dotnet.genera l
|
| Hello, and thank you for your valuable feedback.
|
| We got some other advice proposing to have two different UIs for
| Windows/IE-based and other platforms/other browsers: for Windows/IE we
could
| create a .NET WinForms control (since WinXP SP2 won't run ActiveX without
| user acceptance, and btw our developers are .NET developers anyway, so
| ActiveX would not be our best choice, and also Win XP SP2 doesn't have
any
| Java Virtual Machine by default), and for other platforms/other browsers
we
| would create a Java applet.
|
| I think that even if we would need to duplicate the functionality in a
..NET
| control and in a Java applet (which is not nice in a 21st century world
but
| hey, that's it when we have proprietary compteting tehnologies that are
not
| using the same standards...), that's the best approach to take to be able
to
| still use .NET wherever possible (i.e. on Windows machines), and not
break
| the second requirement for other platforms.
|
| However, running a .NET Windows Forms-based control on Windows XP (hosted
in
| IE) still requires that the user to install .NET Framework... A
suggestion to
| Microsoft (that I'm sure was done millions of times by other .NET
developers)
| would be to include .NET Framework by default, either in the latest SP or
as
| a mandatory download from Windows Update...
|
| --
| Sorin Dolha, DlhSoft
| MCAD, MCSD .NET
|
|
| "Steven Cheng[MSFT]" wrote:
|
| > Hi Sorin,
| >
| > Welcome to MSDN newsgroup.
| > Based on your description, I think it would be a bit hard to meet all
the
| > requirements you mentioned. Here are some of my suggestions regarding
on
| > the problems:
| >
| > 1. For this clientside file checking and uploading function, I think we
| > could not but use rich client components (eg, .net winform control,
activex
| > control, java applet.....). Pure clientside script won't have the
ability
| > to manipulate clientside file or do any web accessing operation.
| >
| > 2.For different target client platform( windows IE/non-IE, non-windows
| > non-IE), we may consider provide different UI for them. For windows IE
| > client, of course the best choice is using .NET UserControl. For other
| > ones, I think you may still consider applet. Also, from a quick
search,
| > there seems has some existing 3rd party applet rich client file
uploaders:
| >
| > http://sourceforge.net/projects/jupload
| >
| > You can refer to some to see whether they're working in your scenario.
| > Anyway, if your design is restricted to manipulating(ch ecking size) the
| > file on the clientside, using those Rich client components are
unavoidable.
| >
| > Please feel free to post here if you have any other ideas or concerns.
| > Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| >
| > --------------------
| > | Thread-Topic: Solution design
| > | thread-index: AcWtkSLp/5jhTg5jSH+EU68J UvkjMw==
| > | X-WBNR-Posting-Host: 80.96.79.16
| > | From: "=?Utf-8?B?U29yaW4gRG9 saGE=?=" <sd****@communi ty.nospam>
| > | Subject: Solution design
| > | Date: Tue, 30 Aug 2005 11:32:11 -0700
| > | Lines: 58
| > | Message-ID: <1C************ *************** *******@microso ft.com>
| > | MIME-Version: 1.0
| > | Content-Type: text/plain;
| > | charset="Utf-8"
| > | Content-Transfer-Encoding: 7bit
| > | X-Newsreader: Microsoft CDO for Windows 2000
| > | Content-Class: urn:content-classes:message
| > | Importance: normal
| > | Priority: normal
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| > | Newsgroups: microsoft.publi c.dotnet.genera l
| > | NNTP-Posting-Host: TK2MSFTNGXA03.p hx.gbl 10.40.2.250
| > | Path: TK2MSFTNGXA01.p hx.gbl!TK2MSFTN GXA03.phx.gbl
| > | Xref: TK2MSFTNGXA01.p hx.gbl microsoft.publi c.dotnet.genera l:49141
| > | X-Tomcat-NG: microsoft.publi c.dotnet.genera l
| > |
| > | Hello,
| > |
| > | We intend to create an ASP.NET-based Web application (hosted on
Internet
| > | Information Services, or IIS) and one feature of the application
needs to
| > | allow the end user to upload photos to the server.
| > |
| > | However, our customer requests that both of these two objectives to
be
| > | supported by the design of the solution:
| > |
| > | 1. The photos should be encoded as JPG, and resized (if larger than a
| > | maximum adminisible width/height) on the client side, before the
actual
| > | upload.
| > |
| > | 2. The upload (and the whole application) should work on multiple
| > browsers
| > | supported on multiple platforms, running with the default user
security
| > | settings (explicit request includes, but are not limited to: Internet
| > | Explorer on Windows and Macintosh, Mozilla Firefox on Windows and
other
| > OSes).
| > |
| > | The first request would trigger for creating: a .NET-based user
control
| > | hosted in Internet Explorer, or a ActiveX component hosted also on
the
| > web
| > | site, or a Java applet. Personally, if it weren't for the second
request,
| > I'd
| > | choose the first choice (.NET-based user control as it is the most
| > flexible
| > | and uses the advantages of the .NET technologies even on client side).
| > |
| > | However, the second request would trigger for Java instead, as .NET
(or
| > | COM/ActiveX technologies are not running on the requested
| > platforms/browsers).
| > |
| > | For testing purposes, we tried to create a Java applet that was
trying to
| > | allow a user to select an image using a FileDialog window, and then
| > trying to
| > | open the image, convert it as required and then upload the resulting
| > bytes
| > | back to the server. This seemed to be OK, but unlike .NET, Java
applets
| > do
| > | not allow implicitly to open a file stream on the client host even if
it
| > was
| > | selected by a user n a FileDialog window (I know .NET default
security
| > | permissions would allow that, because I already used it in another
| > | application). In this case, we tried to sign the applet using the
steps
| > | presented by Sun on their Web site due to no avail: an exception
| > | (AccessControlE xception, with access denying on socket creation for
| > getting
| > | the image file from the local client host) was generated even if the
jar
| > was
| > | signed (with a test certificate, tough - but even in this case, the
| > browser
| > | should have asked the end user whether or not she trusts the applet
and
| > allow
| > | it to run if accepted - at least that's what Sun documentation
sais...)
| > |
| > | Now, because we feel that a java applet is not an as good idea as we
| > first
| > | thought due to the default security permissions higher than actually
| > | necessary (i.e. reading a file should be allowed if the file was
selected
| > by
| > | the user in a FileDialog...), we are back to the design table, and
| > looking
| > | for some advice from anyone else, if available: what do you think?
What
| > is
| > | the best approach we could do to meet both of the customer
requirements
| > and
| > | still create a nice solution (such as a .NET-only one)? :)
| > |
| > | PS: Maybe someone knows where to find a JPEG encoder written entirely
in
| > | JScript running on the client with a HTML FileUpload control as the
| > source
| > | for the file, before actually uploading it, or is it something too
| > difficult
| > | to write entirely in JScript?
| > |
| > | --
| > | Sorin Dolha, DlhSoft
| > | MCAD, MCSD .NET
| > |
| >
| >
|

Sep 1 '05 #4

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

Similar topics

1
1722
by: Jamie Meredith | last post by:
We are a small graphic design firm who is fighting a growth spurt which has resulted in an overload in our handling of email and proofing. We are looking for a pre-built, open source PHP/MYSQL solution that would provide the following features. Any ideas would be much appreciated. Modification of an existing solution would be acceptable as we have some understanding of PHP and its implementation. 1) Ability to add users (clients) to...
26
3139
by: Oplec | last post by:
Hi, I am learning standard C++ as a hobby. The C++ Programming Language : Special Edition has been the principal source for my information. I read the entirety of the book and concluded that I had done myself a disservice by having not attempted and completed the exercises. I intend to rectify that. My current routine is to read a chapter and then attempt every exercise problem, and I find that this process is leading to a greater...
9
2459
by: Patchwork | last post by:
Hi Everyone, I have a design related question (in C++) that I am hoping someone can help me with. It is related to my previous post but since it was pointed out that I was more or less asking the wrong questions about the wrong 'topic' (polymorphism) I have posted this new question. Please don't see this as a spurious attempt to repost :-) As mentioned previously, there is a very real problem I am trying to solve, but I have reduced...
2
1561
by: John at Free Design | last post by:
I have developed several web solutions (projects) in .NET from scratch and deployed them successfully. However, I have a new web project to do that would benefit by starting with a copy of an existing one. While you would think it would be easy enough to copy a project, I have never been able to do so successfully. Can anyone help with a simple, straight forward way to duplicate a project so it can be used as the foundation for a new...
14
3095
by: alwayshouston | last post by:
Hi All! I am working on this very small database and I am confused in the designing a simple form. I only have three tables in the database. First Table: tblExpense Columns: ExpenseID ; ExpenseType Data: 1 ; FOOD 2 ; AIRLINE 3 ; FARE
6
1178
by: Peter O'Reilly | last post by:
I've read here and have experienced much lament about the Visual Studio Editor rearranging text when switching to and from the design and HTML view. I've stumbled upon a solution to remedy such problem which is to simply to remove the MS_POSITIONING attribute from the HTML body tag. I did such after running a page through an HTML validator (@ w3c.org) and it did not recognize such attribute. So far no negative side effects and plenty of...
3
291
by: Sorin Dolha | last post by:
Hello, We intend to create an ASP.NET-based Web application (hosted on Internet Information Services, or IIS) and one feature of the application needs to allow the end user to upload photos to the server. However, our customer requests that both of these two objectives to be supported by the design of the solution: 1. The photos should be encoded as JPG, and resized (if larger than a
0
1044
by: Frankie | last post by:
Where and how in the design process do you bring patterns (as formalized by the GoF) into play? In particular, after identifying specific feature requirements, do you... ONE: go hunting (quick as that effort may be) for a pattern that addresses the design problem? And then design a specific solution by using the relevant pattern(s) as a guide? Or
0
2338
by: techie | last post by:
List of Solution manuals: Engineering Circuit Analysis 6Ed - Hayt Solutions Manual Norbury - Solutions manual for mechanics and thermodynamics Physics For Scientists And Engineers - Solution Manual RC Hibbeler statistics 11th edition
0
8319
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
8739
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...
0
8612
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
7347
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...
1
6175
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
4329
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2739
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
1969
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1732
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.