473,503 Members | 12,175 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASPX --allowing HTML Designers to modify... ???

Doing pages for contract.....

If I make an ASPX file that does certain things, how simple would it be for
a person who know nothing about it to modify the user interface without
bothering the ASPX interaction? How would I best build such pages. Many
people of course don't want a page that they can't modify at all without
programmer intervention. I think ASPX does this.

Just curious to hear some comments on the subject from more experienced
ASP.NET developers.

Thanks,

Shane
Nov 17 '05 #1
12 1715
TJS
they could use web matrix tool
"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:OF**************@tk2msftngp13.phx.gbl...
Doing pages for contract.....

If I make an ASPX file that does certain things, how simple would it be for a person who know nothing about it to modify the user interface without
bothering the ASPX interaction? How would I best build such pages. Many
people of course don't want a page that they can't modify at all without
programmer intervention. I think ASPX does this.

Just curious to hear some comments on the subject from more experienced
ASP.NET developers.

Thanks,

Shane

Nov 17 '05 #2
TJS
they could use web matrix tool
"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:OF**************@tk2msftngp13.phx.gbl...
Doing pages for contract.....

If I make an ASPX file that does certain things, how simple would it be for a person who know nothing about it to modify the user interface without
bothering the ASPX interaction? How would I best build such pages. Many
people of course don't want a page that they can't modify at all without
programmer intervention. I think ASPX does this.

Just curious to hear some comments on the subject from more experienced
ASP.NET developers.

Thanks,

Shane

Nov 17 '05 #3
If you use Code Behind then the code is not held with the layout. As long
as the objects remain in the aspx page then you should have few issues.
That said, if you have used asp controls extensively, in particular custom
user controls then your html guy will likely require an understanding on the
page interactions between controls and code behind. If all you are looking
to do is modify layout then it should be controllable.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
----------------------------------------------

"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:OF**************@tk2msftngp13.phx.gbl...
Doing pages for contract.....

If I make an ASPX file that does certain things, how simple would it be for a person who know nothing about it to modify the user interface without
bothering the ASPX interaction? How would I best build such pages. Many
people of course don't want a page that they can't modify at all without
programmer intervention. I think ASPX does this.

Just curious to hear some comments on the subject from more experienced
ASP.NET developers.

Thanks,

Shane

Nov 17 '05 #4
If you use Code Behind then the code is not held with the layout. As long
as the objects remain in the aspx page then you should have few issues.
That said, if you have used asp controls extensively, in particular custom
user controls then your html guy will likely require an understanding on the
page interactions between controls and code behind. If all you are looking
to do is modify layout then it should be controllable.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
----------------------------------------------

"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:OF**************@tk2msftngp13.phx.gbl...
Doing pages for contract.....

If I make an ASPX file that does certain things, how simple would it be for a person who know nothing about it to modify the user interface without
bothering the ASPX interaction? How would I best build such pages. Many
people of course don't want a page that they can't modify at all without
programmer intervention. I think ASPX does this.

Just curious to hear some comments on the subject from more experienced
ASP.NET developers.

Thanks,

Shane

Nov 17 '05 #5
Thanks.

So I could make a page that does searches or whatever in ASP.NET using code
behind. It would have text box, button and grid control, and the HTML
people could easily move those things around, change page layout somewhat
and things should work.

I was thinking as much.

Just curious to hear from people who'd done something like this. Say you
bid on a small contract that is to write some ASP code that the person wants
to use in their HTML pages as they want to..... Could I do it in ASPX and
they have the flexibility they want?

Have you or anyone else done this sort of thing and was your experience
positive or was it a pain?

Thanks,

Shane
"John Timney (Microsoft MVP)" <ti*****@despammed.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
If you use Code Behind then the code is not held with the layout. As long
as the objects remain in the aspx page then you should have few issues.
That said, if you have used asp controls extensively, in particular custom
user controls then your html guy will likely require an understanding on the page interactions between controls and code behind. If all you are looking to do is modify layout then it should be controllable.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
----------------------------------------------

"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:OF**************@tk2msftngp13.phx.gbl...
Doing pages for contract.....

If I make an ASPX file that does certain things, how simple would it be

for
a person who know nothing about it to modify the user interface without
bothering the ASPX interaction? How would I best build such pages. Many people of course don't want a page that they can't modify at all without
programmer intervention. I think ASPX does this.

Just curious to hear some comments on the subject from more experienced
ASP.NET developers.

Thanks,

Shane


Nov 17 '05 #6
Thanks.

So I could make a page that does searches or whatever in ASP.NET using code
behind. It would have text box, button and grid control, and the HTML
people could easily move those things around, change page layout somewhat
and things should work.

I was thinking as much.

Just curious to hear from people who'd done something like this. Say you
bid on a small contract that is to write some ASP code that the person wants
to use in their HTML pages as they want to..... Could I do it in ASPX and
they have the flexibility they want?

Have you or anyone else done this sort of thing and was your experience
positive or was it a pain?

Thanks,

Shane
"John Timney (Microsoft MVP)" <ti*****@despammed.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
If you use Code Behind then the code is not held with the layout. As long
as the objects remain in the aspx page then you should have few issues.
That said, if you have used asp controls extensively, in particular custom
user controls then your html guy will likely require an understanding on the page interactions between controls and code behind. If all you are looking to do is modify layout then it should be controllable.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
----------------------------------------------

"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:OF**************@tk2msftngp13.phx.gbl...
Doing pages for contract.....

If I make an ASPX file that does certain things, how simple would it be

for
a person who know nothing about it to modify the user interface without
bothering the ASPX interaction? How would I best build such pages. Many people of course don't want a page that they can't modify at all without
programmer intervention. I think ASPX does this.

Just curious to hear some comments on the subject from more experienced
ASP.NET developers.

Thanks,

Shane


Nov 17 '05 #7
I've heard that name alot but don't have any idea what webmatrix is.
"TJS" <no****@here.com> wrote in message
news:vp************@corp.supernews.com...
they could use web matrix tool
"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:OF**************@tk2msftngp13.phx.gbl...
Doing pages for contract.....

If I make an ASPX file that does certain things, how simple would it be

for
a person who know nothing about it to modify the user interface without
bothering the ASPX interaction? How would I best build such pages. Many people of course don't want a page that they can't modify at all without
programmer intervention. I think ASPX does this.

Just curious to hear some comments on the subject from more experienced
ASP.NET developers.

Thanks,

Shane


Nov 17 '05 #8
I've heard that name alot but don't have any idea what webmatrix is.
"TJS" <no****@here.com> wrote in message
news:vp************@corp.supernews.com...
they could use web matrix tool
"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:OF**************@tk2msftngp13.phx.gbl...
Doing pages for contract.....

If I make an ASPX file that does certain things, how simple would it be

for
a person who know nothing about it to modify the user interface without
bothering the ASPX interaction? How would I best build such pages. Many people of course don't want a page that they can't modify at all without
programmer intervention. I think ASPX does this.

Just curious to hear some comments on the subject from more experienced
ASP.NET developers.

Thanks,

Shane


Nov 17 '05 #9
Part of the design remit for ASP.NET was to seperate presentation from the
logic that works the page - the result is code behind and its a very well
supported model for putting sites together and allowing designers to do the
page layout, and coders to make it tick.

Its not for inexperienced HTML hackers which sadly is what most companies
seem to have. You need an understaning of how page presentation and logic
interlink which is why you would need to work closely with the people you
had changing the presentation. Its a perfectly feasible model and works
well in a well structured and disciplined team.

Incidentally, Web matrix is a free editing tool for asp.net available from
www.asp.net and fully supported by the Microsoft ASP.NET team and can be
very beneficial in taching people the difference betwenn HTML tags, and
ASP.NET controls.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
----------------------------------------------

"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:#t**************@TK2MSFTNGP11.phx.gbl...
Thanks.

So I could make a page that does searches or whatever in ASP.NET using code behind. It would have text box, button and grid control, and the HTML
people could easily move those things around, change page layout somewhat
and things should work.

I was thinking as much.

Just curious to hear from people who'd done something like this. Say you
bid on a small contract that is to write some ASP code that the person wants to use in their HTML pages as they want to..... Could I do it in ASPX and
they have the flexibility they want?

Have you or anyone else done this sort of thing and was your experience
positive or was it a pain?

Thanks,

Shane
"John Timney (Microsoft MVP)" <ti*****@despammed.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
If you use Code Behind then the code is not held with the layout. As long
as the objects remain in the aspx page then you should have few issues.
That said, if you have used asp controls extensively, in particular custom user controls then your html guy will likely require an understanding on

the
page interactions between controls and code behind. If all you are

looking
to do is modify layout then it should be controllable.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
----------------------------------------------

"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:OF**************@tk2msftngp13.phx.gbl...
Doing pages for contract.....

If I make an ASPX file that does certain things, how simple would it be
for
a person who know nothing about it to modify the user interface

without bothering the ASPX interaction? How would I best build such pages.

Many people of course don't want a page that they can't modify at all without programmer intervention. I think ASPX does this.

Just curious to hear some comments on the subject from more experienced ASP.NET developers.

Thanks,

Shane



Nov 17 '05 #10
Part of the design remit for ASP.NET was to seperate presentation from the
logic that works the page - the result is code behind and its a very well
supported model for putting sites together and allowing designers to do the
page layout, and coders to make it tick.

Its not for inexperienced HTML hackers which sadly is what most companies
seem to have. You need an understaning of how page presentation and logic
interlink which is why you would need to work closely with the people you
had changing the presentation. Its a perfectly feasible model and works
well in a well structured and disciplined team.

Incidentally, Web matrix is a free editing tool for asp.net available from
www.asp.net and fully supported by the Microsoft ASP.NET team and can be
very beneficial in taching people the difference betwenn HTML tags, and
ASP.NET controls.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
----------------------------------------------

"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:#t**************@TK2MSFTNGP11.phx.gbl...
Thanks.

So I could make a page that does searches or whatever in ASP.NET using code behind. It would have text box, button and grid control, and the HTML
people could easily move those things around, change page layout somewhat
and things should work.

I was thinking as much.

Just curious to hear from people who'd done something like this. Say you
bid on a small contract that is to write some ASP code that the person wants to use in their HTML pages as they want to..... Could I do it in ASPX and
they have the flexibility they want?

Have you or anyone else done this sort of thing and was your experience
positive or was it a pain?

Thanks,

Shane
"John Timney (Microsoft MVP)" <ti*****@despammed.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
If you use Code Behind then the code is not held with the layout. As long
as the objects remain in the aspx page then you should have few issues.
That said, if you have used asp controls extensively, in particular custom user controls then your html guy will likely require an understanding on

the
page interactions between controls and code behind. If all you are

looking
to do is modify layout then it should be controllable.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
----------------------------------------------

"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:OF**************@tk2msftngp13.phx.gbl...
Doing pages for contract.....

If I make an ASPX file that does certain things, how simple would it be
for
a person who know nothing about it to modify the user interface

without bothering the ASPX interaction? How would I best build such pages.

Many people of course don't want a page that they can't modify at all without programmer intervention. I think ASPX does this.

Just curious to hear some comments on the subject from more experienced ASP.NET developers.

Thanks,

Shane



Nov 17 '05 #11
Thanks.

I have written quite a bit in ASP.NET using VB code behinds. But in terms
of thinking of bidding on a small project where they wanted "asp code" taht
they could wire to HTML as they like. I was just curious as to whether I
should attempt it with ASP.NET. Thanks for all of the info. I will have to
check out webmatrix. Sounds like it is mainly for the UI design part.

Thanks,

"John Timney (Microsoft MVP)" <ti*****@despammed.com> wrote in message
news:eJ**************@TK2MSFTNGP10.phx.gbl...
Part of the design remit for ASP.NET was to seperate presentation from the
logic that works the page - the result is code behind and its a very well
supported model for putting sites together and allowing designers to do the page layout, and coders to make it tick.

Its not for inexperienced HTML hackers which sadly is what most companies
seem to have. You need an understaning of how page presentation and logic
interlink which is why you would need to work closely with the people you
had changing the presentation. Its a perfectly feasible model and works
well in a well structured and disciplined team.

Incidentally, Web matrix is a free editing tool for asp.net available from
www.asp.net and fully supported by the Microsoft ASP.NET team and can be
very beneficial in taching people the difference betwenn HTML tags, and
ASP.NET controls.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
----------------------------------------------

"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:#t**************@TK2MSFTNGP11.phx.gbl...
Thanks.

So I could make a page that does searches or whatever in ASP.NET using

code
behind. It would have text box, button and grid control, and the HTML
people could easily move those things around, change page layout somewhat
and things should work.

I was thinking as much.

Just curious to hear from people who'd done something like this. Say you bid on a small contract that is to write some ASP code that the person

wants
to use in their HTML pages as they want to..... Could I do it in ASPX and they have the flexibility they want?

Have you or anyone else done this sort of thing and was your experience
positive or was it a pain?

Thanks,

Shane
"John Timney (Microsoft MVP)" <ti*****@despammed.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
If you use Code Behind then the code is not held with the layout. As long as the objects remain in the aspx page then you should have few issues. That said, if you have used asp controls extensively, in particular custom user controls then your html guy will likely require an understanding on the
page interactions between controls and code behind. If all you are

looking
to do is modify layout then it should be controllable.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
----------------------------------------------

"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in
message news:OF**************@tk2msftngp13.phx.gbl...
> Doing pages for contract.....
>
> If I make an ASPX file that does certain things, how simple would it

be for
> a person who know nothing about it to modify the user interface without > bothering the ASPX interaction? How would I best build such pages.

Many
> people of course don't want a page that they can't modify at all without > programmer intervention. I think ASPX does this.
>
> Just curious to hear some comments on the subject from more experienced > ASP.NET developers.
>
> Thanks,
>
> Shane
>
>



Nov 17 '05 #12
Thanks.

I have written quite a bit in ASP.NET using VB code behinds. But in terms
of thinking of bidding on a small project where they wanted "asp code" taht
they could wire to HTML as they like. I was just curious as to whether I
should attempt it with ASP.NET. Thanks for all of the info. I will have to
check out webmatrix. Sounds like it is mainly for the UI design part.

Thanks,

"John Timney (Microsoft MVP)" <ti*****@despammed.com> wrote in message
news:eJ**************@TK2MSFTNGP10.phx.gbl...
Part of the design remit for ASP.NET was to seperate presentation from the
logic that works the page - the result is code behind and its a very well
supported model for putting sites together and allowing designers to do the page layout, and coders to make it tick.

Its not for inexperienced HTML hackers which sadly is what most companies
seem to have. You need an understaning of how page presentation and logic
interlink which is why you would need to work closely with the people you
had changing the presentation. Its a perfectly feasible model and works
well in a well structured and disciplined team.

Incidentally, Web matrix is a free editing tool for asp.net available from
www.asp.net and fully supported by the Microsoft ASP.NET team and can be
very beneficial in taching people the difference betwenn HTML tags, and
ASP.NET controls.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
----------------------------------------------

"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in message
news:#t**************@TK2MSFTNGP11.phx.gbl...
Thanks.

So I could make a page that does searches or whatever in ASP.NET using

code
behind. It would have text box, button and grid control, and the HTML
people could easily move those things around, change page layout somewhat
and things should work.

I was thinking as much.

Just curious to hear from people who'd done something like this. Say you bid on a small contract that is to write some ASP code that the person

wants
to use in their HTML pages as they want to..... Could I do it in ASPX and they have the flexibility they want?

Have you or anyone else done this sort of thing and was your experience
positive or was it a pain?

Thanks,

Shane
"John Timney (Microsoft MVP)" <ti*****@despammed.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
If you use Code Behind then the code is not held with the layout. As long as the objects remain in the aspx page then you should have few issues. That said, if you have used asp controls extensively, in particular custom user controls then your html guy will likely require an understanding on the
page interactions between controls and code behind. If all you are

looking
to do is modify layout then it should be controllable.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
----------------------------------------------

"SStory" <Th*******@TAKETHISSPAMBUSTEROUT.Softhome.net> wrote in
message news:OF**************@tk2msftngp13.phx.gbl...
> Doing pages for contract.....
>
> If I make an ASPX file that does certain things, how simple would it

be for
> a person who know nothing about it to modify the user interface without > bothering the ASPX interaction? How would I best build such pages.

Many
> people of course don't want a page that they can't modify at all without > programmer intervention. I think ASPX does this.
>
> Just curious to hear some comments on the subject from more experienced > ASP.NET developers.
>
> Thanks,
>
> Shane
>
>



Nov 17 '05 #13

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

Similar topics

3
1575
by: Aurimas Norkevicius | last post by:
I need to rename asp.net application filenames to have *.html file name extensions not *.aspx. It is easy to do. Bu how to configure Visual Studio .NET 2003 to process *.html files the same as it...
0
277
by: SStory | last post by:
Doing pages for contract..... If I make an ASPX file that does certain things, how simple would it be for a person who know nothing about it to modify the user interface without bothering the...
7
1460
by: Shaul Feldman | last post by:
Hello, the question is how can I masquerade ASPX files behind HTML extension? Thank you in advance. -- With the best wishes, Shaul Feldman
1
1930
by: Priya | last post by:
Hi, I'm new to ASP.NET. I've some basic ques. In what situations we use aspx page when DHTML can be used? How can I interact between an aspx page & html page eg: using Request . Form i get the...
4
3032
by: Valerian John | last post by:
I am looking for a way to sort of redirect the Page.Response content to a pdf generator component that would create a pdf file on the fly! I wonder if there is such a thing in the .net world. I...
1
2715
by: desi.american | last post by:
I have a dynamically generates ASPX page with tables and data. Depending on user selection, the same page can be viewed as a simple web page (rendered in HTML) or as an excel spreadsheet. If the...
0
1401
by: Nicholas Grabowski | last post by:
Hallo, hab ein großes Problem. Habe den IIS 5.1 windows XP Professional aktuellstes Servicepack. Updates auf dem neuesten Stand. Ich kann keine normalen .asp Seiten aufrufen aber aspx .NET...
4
2182
by: orianavim | last post by:
Hi, I'm try to find an easy efficient way to generate my web pages dynamically from an xml/text file. What exactly I want? I want that whenever a pages is loaded it will go and read an...
0
7193
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,...
0
7067
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...
0
7264
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,...
0
7316
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...
0
7449
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...
0
5562
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,...
1
4992
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...
0
3160
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3148
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.