473,407 Members | 2,312 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

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 1709
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
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
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
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
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
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
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
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
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
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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
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
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...
0
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...

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.