473,986 Members | 9,766 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

2.0 Processiing Model Seriously Flawed?

Simply a postulation but consider the following...

// breaks when declared in content page that uses a MasterPage
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif" />

// must run as a web server control
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="server" />

However... When we want to change themes dynamically how do we modify the
value of the path for the src attribute at runtime? In ASP we used
Response.Write code blocks <%= %> the .NET equivalent of which are not
allowed in web server control declarations hence the postulation as we are
apparently missing the functional construct.

What I thought I need is the following in my HTML...

<img src="App_Themes/<%= Request.Cookies["themeName"].Value; %>/Images/<%=
Request.Cookies["themePrefi x"].Value; %>METRO184x26.g if" />
runat="server" />

I've tried different quoting types but I'm not getting it right.
I've tried a binding syntax <%# %> and am not getting it right.

Surely this is me as I can't imagine the design of 2.0 is this seriously
flawed that the entire img element would have to be built in code when using
MasterPages that require dynamic Theme selections.

<%= Clinton Gallagher


Nov 19 '05 #1
9 1302
Excuse me but one of my statements needs to be corrected.

Wrong:
// breaks when declared in content page that uses a MasterPage

Right:
// breaks content page display when declared in the MasterPage

<%= Clinton Gallagher

"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:e$******** ******@TK2MSFTN GP14.phx.gbl...
Simply a postulation but consider the following...

// breaks when declared in content page that uses a MasterPage
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif" />

// must run as a web server control
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="server" />

However... When we want to change themes dynamically how do we modify the
value of the path for the src attribute at runtime? In ASP we used
Response.Write code blocks <%= %> the .NET equivalent of which are not
allowed in web server control declarations hence the postulation as we are
apparently missing the functional construct.

What I thought I need is the following in my HTML...

<img src="App_Themes/<%= Request.Cookies["themeName"].Value; %>/Images/<%=
Request.Cookies["themePrefi x"].Value; %>METRO184x26.g if" />
runat="server" />

I've tried different quoting types but I'm not getting it right.
I've tried a binding syntax <%# %> and am not getting it right.

Surely this is me as I can't imagine the design of 2.0 is this seriously
flawed that the entire img element would have to be built in code when
using MasterPages that require dynamic Theme selections.

<%= Clinton Gallagher


Nov 19 '05 #2
Hello,

Try give your image control an Id then use it to change the src in the
code.

Now suppose you want to change an image:
In HTML:
<img id="img_1"
src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif" runat="server"/>

At codebehind:
img_1.Src = "App_Themes/" & Request.Cookies["themeName"].Value &
"/Images/" & _
Request.Cookies["themePrefi x"].Value & "METRO184x26.gi f"

Since .NET framework is Object-Oriented in nature, for good coding style
use <%= %> as few as possible.

Regards,
Lau Lei Cheong

"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > ¼¶¼g©ó¶l¥ó·s»D: e$************* *@TK2MSFTNGP14. phx.gbl...
Simply a postulation but consider the following...

// breaks when declared in content page that uses a MasterPage
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif" />

// must run as a web server control
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="server" />

However... When we want to change themes dynamically how do we modify the
value of the path for the src attribute at runtime? In ASP we used
Response.Write code blocks <%= %> the .NET equivalent of which are not
allowed in web server control declarations hence the postulation as we are
apparently missing the functional construct.

What I thought I need is the following in my HTML...

<img src="App_Themes/<%= Request.Cookies["themeName"].Value; %>/Images/<%=
Request.Cookies["themePrefi x"].Value; %>METRO184x26.g if" />
runat="server" />

I've tried different quoting types but I'm not getting it right.
I've tried a binding syntax <%# %> and am not getting it right.

Surely this is me as I can't imagine the design of 2.0 is this seriously
flawed that the entire img element would have to be built in code when
using MasterPages that require dynamic Theme selections.

<%= Clinton Gallagher


Nov 19 '05 #3
Thanks for responding. I knew I could change the src attributes in code but
I'm still not ready to give up on what is supposed to be the new declarative
model. For example, I just looked up the new expression syntax [1].

That may allow me to use <%$ expression %> for the purpose I am interested
in but I don't understand how it can be used yet because I am still getting
server control not well formed errors...

<%= Clinton Gallagher

[1]
http://beta.asp.net/QUICKSTARTV20/as...px#expressions
"Lau Lei Cheong" <le****@yehoo.c om.hk> wrote in message
news:ez******** ******@TK2MSFTN GP14.phx.gbl...
Hello,

Try give your image control an Id then use it to change the src in the
code.

Now suppose you want to change an image:
In HTML:
<img id="img_1"
src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="server"/>

At codebehind:
img_1.Src = "App_Themes/" & Request.Cookies["themeName"].Value &
"/Images/" & _
Request.Cookies["themePrefi x"].Value & "METRO184x26.gi f"

Since .NET framework is Object-Oriented in nature, for good coding
style use <%= %> as few as possible.

Regards,
Lau Lei Cheong

"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com >
¼¶¼g©ó¶l¥ó·s»D: e$************* *@TK2MSFTNGP14. phx.gbl...
Simply a postulation but consider the following...

// breaks when declared in content page that uses a MasterPage
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif" />

// must run as a web server control
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="server" />

However... When we want to change themes dynamically how do we modify the
value of the path for the src attribute at runtime? In ASP we used
Response.Write code blocks <%= %> the .NET equivalent of which are not
allowed in web server control declarations hence the postulation as we
are apparently missing the functional construct.

What I thought I need is the following in my HTML...

<img src="App_Themes/<%= Request.Cookies["themeName"].Value;
%>/Images/<%= Request.Cookies["themePrefi x"].Value; %>METRO184x26.g if" />
runat="server" />

I've tried different quoting types but I'm not getting it right.
I've tried a binding syntax <%# %> and am not getting it right.

Surely this is me as I can't imagine the design of 2.0 is this seriously
flawed that the entire img element would have to be built in code when
using MasterPages that require dynamic Theme selections.

<%= Clinton Gallagher



Nov 19 '05 #4
Clinton,

I see your point, yet I my brain still find it difficult to debug in
some case. (e.g.: one of my site keep getting viewstate related exceptions
on clients running IE5 in MacPPC, and still can't figure out why.) :)

Back to the question, I think you may try to add Id to the webcontrol as
it's anyway essential for further control of the object in server-side. And
I suggest you check the Request.Cookies["themeName"].Value and
Request.Cookies["themePrefi x"].Value is initialized when the page is
rendering. I have no idea how .NET will deal with it if .NET see it's a
"nothing" value.

Regards,
Lau Lei Cheong

"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > ¼¶¼g©ó¶l¥ó·s»D: uj************* *@TK2MSFTNGP15. phx.gbl...
Thanks for responding. I knew I could change the src attributes in code
but I'm still not ready to give up on what is supposed to be the new
declarative model. For example, I just looked up the new expression syntax
[1].

That may allow me to use <%$ expression %> for the purpose I am
interested in but I don't understand how it can be used yet because I am
still getting server control not well formed errors...

<%= Clinton Gallagher

[1]
http://beta.asp.net/QUICKSTARTV20/as...px#expressions
"Lau Lei Cheong" <le****@yehoo.c om.hk> wrote in message
news:ez******** ******@TK2MSFTN GP14.phx.gbl...
Hello,

Try give your image control an Id then use it to change the src in the
code.

Now suppose you want to change an image:
In HTML:
<img id="img_1"
src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="server"/>

At codebehind:
img_1.Src = "App_Themes/" & Request.Cookies["themeName"].Value &
"/Images/" & _
Request.Cookies["themePrefi x"].Value & "METRO184x26.gi f"

Since .NET framework is Object-Oriented in nature, for good coding
style use <%= %> as few as possible.

Regards,
Lau Lei Cheong

"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > ¼¶¼g©ó¶l¥ó·s»D: e$************* *@TK2MSFTNGP14. phx.gbl...
Simply a postulation but consider the following...

// breaks when declared in content page that uses a MasterPage
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif" />

// must run as a web server control
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="server" />

However... When we want to change themes dynamically how do we modify
the value of the path for the src attribute at runtime? In ASP we used
Response.Write code blocks <%= %> the .NET equivalent of which are not
allowed in web server control declarations hence the postulation as we
are apparently missing the functional construct.

What I thought I need is the following in my HTML...

<img src="App_Themes/<%= Request.Cookies["themeName"].Value;
%>/Images/<%= Request.Cookies["themePrefi x"].Value; %>METRO184x26.g if"
/>
runat="server" />

I've tried different quoting types but I'm not getting it right.
I've tried a binding syntax <%# %> and am not getting it right.

Surely this is me as I can't imagine the design of 2.0 is this seriously
flawed that the entire img element would have to be built in code when
using MasterPages that require dynamic Theme selections.

<%= Clinton Gallagher




Nov 19 '05 #5


Most of ASP.NET is conceptually flawed architecture and implementation.
Which is a shame because almost everything else .NET is excellent.

When I read good specifications I feel happy :)
When I saw the flawed approach to ASP.NET I felt sad :(
clintonG wrote:
Simply a postulation but consider the following...

// breaks when declared in content page that uses a MasterPage
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif" />

// must run as a web server control
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="server" />

However... When we want to change themes dynamically how do we modify the
value of the path for the src attribute at runtime? In ASP we used
Response.Write code blocks <%= %> the .NET equivalent of which are not
allowed in web server control declarations hence the postulation as we are
apparently missing the functional construct.

What I thought I need is the following in my HTML...

<img src="App_Themes/<%= Request.Cookies["themeName"].Value; %>/Images/<%=
Request.Cookies["themePrefi x"].Value; %>METRO184x26.g if" />
runat="server" />

I've tried different quoting types but I'm not getting it right.
I've tried a binding syntax <%# %> and am not getting it right.

Surely this is me as I can't imagine the design of 2.0 is this seriously
flawed that the entire img element would have to be built in code when using
MasterPages that require dynamic Theme selections.

<%= Clinton Gallagher


Nov 19 '05 #6
We are all on a bummer ;-)

<%= Clinton Gallagher

"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** **************@ g49g2000cwa.goo glegroups.com.. .


Most of ASP.NET is conceptually flawed architecture and implementation.
Which is a shame because almost everything else .NET is excellent.

When I read good specifications I feel happy :)
When I saw the flawed approach to ASP.NET I felt sad :(
clintonG wrote:
Simply a postulation but consider the following...

// breaks when declared in content page that uses a MasterPage
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif" />

// must run as a web server control
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="server" />

However... When we want to change themes dynamically how do we modify the
value of the path for the src attribute at runtime? In ASP we used
Response.Write code blocks <%= %> the .NET equivalent of which are not
allowed in web server control declarations hence the postulation as we
are
apparently missing the functional construct.

What I thought I need is the following in my HTML...

<img src="App_Themes/<%= Request.Cookies["themeName"].Value;
%>/Images/<%=
Request.Cookies["themePrefi x"].Value; %>METRO184x26.g if" />
runat="server" />

I've tried different quoting types but I'm not getting it right.
I've tried a binding syntax <%# %> and am not getting it right.

Surely this is me as I can't imagine the design of 2.0 is this seriously
flawed that the entire img element would have to be built in code when
using
MasterPages that require dynamic Theme selections.

<%= Clinton Gallagher

Nov 19 '05 #7
When the HTML img control has no id defined the compiler or the designer
(who knows which one) creates an id and modifies the HTML naming the
id="image1" for example (as I recall).

I understand I need to id my controls if I intend to get or set properties
in code. Many times the same image needs to be used more than once in the
same page. That will require writing code that creatres a control hierarchy
for a given control type and all of the code required to manage that
process. I have other plans for the rest of my life.

<%= Clinton Gallagher

"Lau Lei Cheong" <le****@yehoo.c om.hk> wrote in message
news:eT******** ******@TK2MSFTN GP10.phx.gbl...
Clinton,

I see your point, yet I my brain still find it difficult to debug in
some case. (e.g.: one of my site keep getting viewstate related exceptions
on clients running IE5 in MacPPC, and still can't figure out why.) :)

Back to the question, I think you may try to add Id to the webcontrol
as it's anyway essential for further control of the object in server-side.
And I suggest you check the Request.Cookies["themeName"].Value and
Request.Cookies["themePrefi x"].Value is initialized when the page is
rendering. I have no idea how .NET will deal with it if .NET see it's a
"nothing" value.

Regards,
Lau Lei Cheong

"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com >
¼¶¼g©ó¶l¥ó·s»D: uj************* *@TK2MSFTNGP15. phx.gbl...
Thanks for responding. I knew I could change the src attributes in code
but I'm still not ready to give up on what is supposed to be the new
declarative model. For example, I just looked up the new expression
syntax [1].

That may allow me to use <%$ expression %> for the purpose I am
interested in but I don't understand how it can be used yet because I am
still getting server control not well formed errors...

<%= Clinton Gallagher

[1]
http://beta.asp.net/QUICKSTARTV20/as...px#expressions
"Lau Lei Cheong" <le****@yehoo.c om.hk> wrote in message
news:ez******** ******@TK2MSFTN GP14.phx.gbl...
Hello,

Try give your image control an Id then use it to change the src in
the code.

Now suppose you want to change an image:
In HTML:
<img id="img_1"
src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="server"/>

At codebehind:
img_1.Src = "App_Themes/" & Request.Cookies["themeName"].Value &
"/Images/" & _
Request.Cookies["themePrefi x"].Value & "METRO184x26.gi f"

Since .NET framework is Object-Oriented in nature, for good coding
style use <%= %> as few as possible.

Regards,
Lau Lei Cheong

"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com >
¼¶¼g©ó¶l¥ó·s»D: e$************* *@TK2MSFTNGP14. phx.gbl...
Simply a postulation but consider the following...

// breaks when declared in content page that uses a MasterPage
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif" />

// must run as a web server control
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="server" />

However... When we want to change themes dynamically how do we modify
the value of the path for the src attribute at runtime? In ASP we used
Response.Write code blocks <%= %> the .NET equivalent of which are not
allowed in web server control declarations hence the postulation as we
are apparently missing the functional construct.

What I thought I need is the following in my HTML...

<img src="App_Themes/<%= Request.Cookies["themeName"].Value;
%>/Images/<%= Request.Cookies["themePrefi x"].Value; %>METRO184x26.g if"
/>
runat="server" />

I've tried different quoting types but I'm not getting it right.
I've tried a binding syntax <%# %> and am not getting it right.

Surely this is me as I can't imagine the design of 2.0 is this
seriously flawed that the entire img element would have to be built in
code when using MasterPages that require dynamic Theme selections.

<%= Clinton Gallagher





Nov 19 '05 #8

What I would do is get rid of the hard coded src and use the SkinID
feature, e.g, use the following in ASPX:

<asp:Image ID="Image1" runat="server" SkinID="metroim age"/>

and use the following in a skin file for each theme:

<asp:image runat="server"
Imageurl="Image s/smoke_METRO184x 26.gif"
skinid="metroim age" />
The theming and skinning infrastructure takes care of all the details
for you.

Themes In ASP.NET 2.0
http://odetocode.com/Articles/423.aspx

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Wed, 24 Aug 2005 20:20:31 -0500, "clintonG"
<cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote:
Simply a postulation but consider the following...

// breaks when declared in content page that uses a MasterPage
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif" />

// must run as a web server control
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="serve r" />

However... When we want to change themes dynamically how do we modify the
value of the path for the src attribute at runtime? In ASP we used
Response.Wri te code blocks <%= %> the .NET equivalent of which are not
allowed in web server control declarations hence the postulation as we are
apparently missing the functional construct.

What I thought I need is the following in my HTML...

<img src="App_Themes/<%= Request.Cookies["themeName"].Value; %>/Images/<%=
Request.Cookie s["themePrefi x"].Value; %>METRO184x26.g if" />
runat="serve r" />

I've tried different quoting types but I'm not getting it right.
I've tried a binding syntax <%# %> and am not getting it right.

Surely this is me as I can't imagine the design of 2.0 is this seriously
flawed that the entire img element would have to be built in code when using
MasterPages that require dynamic Theme selections.

<%= Clinton Gallagher



Nov 19 '05 #9
You were correct Scott and I've reverted to the use of server controls and
SkinID as a tactic for managing images used in Themes.

<%= Clinton Gallagher
"Scott Allen" <sc***@nospam.o detocode.com> wrote in message
news:4h******** *************** *********@4ax.c om...

What I would do is get rid of the hard coded src and use the SkinID
feature, e.g, use the following in ASPX:

<asp:Image ID="Image1" runat="server" SkinID="metroim age"/>

and use the following in a skin file for each theme:

<asp:image runat="server"
Imageurl="Image s/smoke_METRO184x 26.gif"
skinid="metroim age" />
The theming and skinning infrastructure takes care of all the details
for you.

Themes In ASP.NET 2.0
http://odetocode.com/Articles/423.aspx

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Wed, 24 Aug 2005 20:20:31 -0500, "clintonG"
<cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote:
Simply a postulation but consider the following...

// breaks when declared in content page that uses a MasterPage
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif" />

// must run as a web server control
<img src="App_Themes/SmokeAndGlass/Images/smoke_METRO184x 26.gif"
runat="server " />

However... When we want to change themes dynamically how do we modify the
value of the path for the src attribute at runtime? In ASP we used
Response.Writ e code blocks <%= %> the .NET equivalent of which are not
allowed in web server control declarations hence the postulation as we are
apparently missing the functional construct.

What I thought I need is the following in my HTML...

<img src="App_Themes/<%= Request.Cookies["themeName"].Value; %>/Images/<%=
Request.Cooki es["themePrefi x"].Value; %>METRO184x26.g if" />
runat="server " />

I've tried different quoting types but I'm not getting it right.
I've tried a binding syntax <%# %> and am not getting it right.

Surely this is me as I can't imagine the design of 2.0 is this seriously
flawed that the entire img element would have to be built in code when
using
MasterPages that require dynamic Theme selections.

<%= Clinton Gallagher


Nov 19 '05 #10

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

Similar topics

6
2652
by: democratix | last post by:
1 - Open Source Software Development (OSSD) is inherently a meritocracy. Bigger, better contributions earn you more power and status. 2 - OSSD accepts the individuality of individual contributions, and as such makes institutional racism/sexism/religionism - even nationalism, impossible. You do good = You are good. 3 - OSSD proves the selfish, economic usefuless of unpaid co-operation with strangers. If you want to promote a rich and...
7
8813
by: pysim | last post by:
Hi, I have a couple of general requests for pointers to python examples and design advice. I'm looking for examples of MVC-based GUI controls done in python (model-view-controller). Also, examples where something like a simulation model running in its own thread sends fast updates to a GUI in near real-time. The only examples I've seen, such as SimPy, wait until the model is finished running before outputting data.
12
3607
by: Steven T. Hatton | last post by:
This is the kind of question that is hard to answer for everybody. Different people think differently. I often stumble where others don't. And I often stroll through what others find hard. I am wondering if people who have read Lippman's _Inside the C++ Object Model_ believe it improved their ability to write C++ code. Also. Is it a page-turner, or a challenge to get through? -- p->m == (*p).m == p.m http://www.kdevelop.org
5
2271
by: clintonG | last post by:
I'm looking for documentation and would not turn my nose up to any code from anybody who thinks they are good at the design of an algorythm that can be used to generated a hierarchical relational data model. What? A Yahoo-like drill-down menu that is a series of categories and nested categories is a hierarchical relational data model. An example can be seen at but the review of the query string values strongly indicates
3
4960
by: MrNobody | last post by:
I am developing an application that has several multi threaded tasks where one thread is doing IO and another thread is grabbing data from the first thread to process it further. I've been noticing that every once in a while my program simply hangs- it is rare but it is annoying. I am worried it may be a synchronization issue involving my producer/consumer threads. I basically go like this:
50
6140
by: Shadow Lynx | last post by:
Consider this simple HTML: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 STRICT//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Strict kills my widths!</title> </head> <body> <table style="width:400px; table-layout:fixed;">
122
7604
by: Edward Diener No Spam | last post by:
The definition of a component model I use below is a class which allows properties, methods, and events in a structured way which can be recognized, usually through some form of introspection outside of that class. This structured way allows visual tools to host components, and allows programmers to build applications and libraries visually in a RAD environment. The Java language has JavaBeans as its component model which allows Java...
97
5620
by: Master Programmer | last post by:
An friend insider told me that VB is to be killled off within 18 months. I guess this makes sence now that C# is here. I believe it and am actualy surprised they ever even included it in VS 2003 in the first place. Anyone else heard about this development? The Master
11
2115
by: Weston Weems | last post by:
I've got the need to have user information for logged in user in a readily avaliable page context (a lot like how Profile is) except not suck. Before we jump to any conclusions, from what I gathered, the implementation of the provider model is absolute garbage. While I've seen microsoft employees make other questionable design decisions, I cant possibly fathom why a user profile cant be derived as some other object.
0
11475
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
11664
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10967
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
10135
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
7668
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
6471
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
6622
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
4807
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3812
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.