473,763 Members | 9,275 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

where did my dll go?

I have a local serve that holds my source code and i'm using vs2005 for 2.0
to build the site. I'm runingthe site off my local pc (filesystem). I built
the site but can't find the dll or the bin directory.
Any Ideas?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
Apr 15 '06 #1
8 2489
2.0 changed the way that works. Instead of putting the .dll in the bin
folder, things are located (default) at
C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \Temporary ASP.NET Files

Although if you're using any third party controls (like Infragistics),
you'll have an App_Licenses.dl l in the bin folder.

Mike

"WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in message
news:06******** *************** ***********@mic rosoft.com...
I have a local serve that holds my source code and i'm using vs2005 for 2.0
to build the site. I'm runingthe site off my local pc (filesystem). I
built
the site but can't find the dll or the bin directory.
Any Ideas?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes

Apr 15 '06 #2
And the model how you can actually get dlls is somewhat complicated (due to
lots of options). By default with Publish Web Site command in VS2005
(essentially means precompiling for deployment where you also get deployable
files) you get something, actually quite bunch of files to deploy to the
server

If you want to get to the model where you get single dll for building the
application, you have left two choices depending on the model how you work.

1. if you want to work with the "web site" model, default in VS2005, where
dll is not done when you build the web site project , you can download Web
Deployment Project (WDP) add-on. It is basically seperate project to VS2005,
to make deployable files (ddls) based on certain conditions you set
http://msdn.microsoft.com/asp.net/re...structure/wdp/

2) If you want to work with very similar model as you did in VS2003, where
you were always required to have explicit compilation step (which produced
one dll), but on the other hand certain compilation related semantics were
very clear (which have changed with web site model), you can download Web
Application Project add-on
http://msdn.microsoft.com/asp.net/re...structure/wap/

I know, at first this seems very, very confusing, so you might want to have
a look at these forum & blog posts to understand what the differences really
are. There are no right or wrong answers right away, it is question of how
you work, you get things done with both models, equally.

http://forums.asp.net/thread/1256579.aspx
http://webproject.scottgu.com
http://weblogs.asp.net/scottgu/archi...05/442032.aspx

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"Mike Hildner" <mh************ *@afweb.com> wrote in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
2.0 changed the way that works. Instead of putting the .dll in the bin
folder, things are located (default) at
C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \Temporary ASP.NET Files

Although if you're using any third party controls (like Infragistics),
you'll have an App_Licenses.dl l in the bin folder.

Mike

"WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in message
news:06******** *************** ***********@mic rosoft.com...
I have a local serve that holds my source code and i'm using vs2005 for
2.0
to build the site. I'm runingthe site off my local pc (filesystem). I
built
the site but can't find the dll or the bin directory.
Any Ideas?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes


Apr 16 '06 #3
can these then be copied to the bin folder on the live web server?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Mike Hildner" wrote:
2.0 changed the way that works. Instead of putting the .dll in the bin
folder, things are located (default) at
C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \Temporary ASP.NET Files

Although if you're using any third party controls (like Infragistics),
you'll have an App_Licenses.dl l in the bin folder.

Mike

"WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in message
news:06******** *************** ***********@mic rosoft.com...
I have a local serve that holds my source code and i'm using vs2005 for 2.0
to build the site. I'm runingthe site off my local pc (filesystem). I
built
the site but can't find the dll or the bin directory.
Any Ideas?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes


Apr 16 '06 #4
I perfer to use the builtin deployment, but this will delete the images (and
other files) that exist on the wbsite. I don't mind copyingthe files
manuelly, but as you said the dlls are not (officially) created when you hit
build site. So i've tried option 1 and this will work, but is not the way
they are recomending.
Thanks
kes
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Teemu Keiski" wrote:
And the model how you can actually get dlls is somewhat complicated (due to
lots of options). By default with Publish Web Site command in VS2005
(essentially means precompiling for deployment where you also get deployable
files) you get something, actually quite bunch of files to deploy to the
server

If you want to get to the model where you get single dll for building the
application, you have left two choices depending on the model how you work.

1. if you want to work with the "web site" model, default in VS2005, where
dll is not done when you build the web site project , you can download Web
Deployment Project (WDP) add-on. It is basically seperate project to VS2005,
to make deployable files (ddls) based on certain conditions you set
http://msdn.microsoft.com/asp.net/re...structure/wdp/

2) If you want to work with very similar model as you did in VS2003, where
you were always required to have explicit compilation step (which produced
one dll), but on the other hand certain compilation related semantics were
very clear (which have changed with web site model), you can download Web
Application Project add-on
http://msdn.microsoft.com/asp.net/re...structure/wap/

I know, at first this seems very, very confusing, so you might want to have
a look at these forum & blog posts to understand what the differences really
are. There are no right or wrong answers right away, it is question of how
you work, you get things done with both models, equally.

http://forums.asp.net/thread/1256579.aspx
http://webproject.scottgu.com
http://weblogs.asp.net/scottgu/archi...05/442032.aspx

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"Mike Hildner" <mh************ *@afweb.com> wrote in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
2.0 changed the way that works. Instead of putting the .dll in the bin
folder, things are located (default) at
C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \Temporary ASP.NET Files

Although if you're using any third party controls (like Infragistics),
you'll have an App_Licenses.dl l in the bin folder.

Mike

"WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in message
news:06******** *************** ***********@mic rosoft.com...
I have a local serve that holds my source code and i'm using vs2005 for
2.0
to build the site. I'm runingthe site off my local pc (filesystem). I
built
the site but can't find the dll or the bin directory.
Any Ideas?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes



Apr 16 '06 #5
Yup,

well, basically the one option without even doing the publish step
(essentially precompilation for deployment) is just xcopy everything on the
production server. It means deploying also the source code.

Personally, I prefer web deployment projects with the default model because
I get all the benefits of the new model (wdp doesn't change that, it isd
separate project is vs solution), but I also get the neatness of deployment
plus other things that WDPs bring (dll per folder, web.config settings
switch, control over what is deployed e.g MSBuild ) and so on.

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in message
news:D3******** *************** ***********@mic rosoft.com...
I perfer to use the builtin deployment, but this will delete the images
(and
other files) that exist on the wbsite. I don't mind copyingthe files
manuelly, but as you said the dlls are not (officially) created when you
hit
build site. So i've tried option 1 and this will work, but is not the way
they are recomending.
Thanks
kes
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Teemu Keiski" wrote:
And the model how you can actually get dlls is somewhat complicated (due
to
lots of options). By default with Publish Web Site command in VS2005
(essentially means precompiling for deployment where you also get
deployable
files) you get something, actually quite bunch of files to deploy to the
server

If you want to get to the model where you get single dll for building the
application, you have left two choices depending on the model how you
work.

1. if you want to work with the "web site" model, default in VS2005,
where
dll is not done when you build the web site project , you can download
Web
Deployment Project (WDP) add-on. It is basically seperate project to
VS2005,
to make deployable files (ddls) based on certain conditions you set
http://msdn.microsoft.com/asp.net/re...structure/wdp/

2) If you want to work with very similar model as you did in VS2003,
where
you were always required to have explicit compilation step (which
produced
one dll), but on the other hand certain compilation related semantics
were
very clear (which have changed with web site model), you can download Web
Application Project add-on
http://msdn.microsoft.com/asp.net/re...structure/wap/

I know, at first this seems very, very confusing, so you might want to
have
a look at these forum & blog posts to understand what the differences
really
are. There are no right or wrong answers right away, it is question of
how
you work, you get things done with both models, equally.

http://forums.asp.net/thread/1256579.aspx
http://webproject.scottgu.com
http://weblogs.asp.net/scottgu/archi...05/442032.aspx

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"Mike Hildner" <mh************ *@afweb.com> wrote in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
> 2.0 changed the way that works. Instead of putting the .dll in the bin
> folder, things are located (default) at
> C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \Temporary ASP.NET Files
>
> Although if you're using any third party controls (like Infragistics),
> you'll have an App_Licenses.dl l in the bin folder.
>
> Mike
>
> "WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in
> message
> news:06******** *************** ***********@mic rosoft.com...
>>I have a local serve that holds my source code and i'm using vs2005 for
>>2.0
>> to build the site. I'm runingthe site off my local pc (filesystem). I
>> built
>> the site but can't find the dll or the bin directory.
>> Any Ideas?
>>
>>
>> --
>> thanks (as always)
>> some day i''m gona pay this forum back for all the help i''m getting
>> kes
>
>


Apr 16 '06 #6
Thanks for responding,
What do you do about the images and other files that get deleted?

--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Teemu Keiski" wrote:
Yup,

well, basically the one option without even doing the publish step
(essentially precompilation for deployment) is just xcopy everything on the
production server. It means deploying also the source code.

Personally, I prefer web deployment projects with the default model because
I get all the benefits of the new model (wdp doesn't change that, it isd
separate project is vs solution), but I also get the neatness of deployment
plus other things that WDPs bring (dll per folder, web.config settings
switch, control over what is deployed e.g MSBuild ) and so on.

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in message
news:D3******** *************** ***********@mic rosoft.com...
I perfer to use the builtin deployment, but this will delete the images
(and
other files) that exist on the wbsite. I don't mind copyingthe files
manuelly, but as you said the dlls are not (officially) created when you
hit
build site. So i've tried option 1 and this will work, but is not the way
they are recomending.
Thanks
kes
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Teemu Keiski" wrote:
And the model how you can actually get dlls is somewhat complicated (due
to
lots of options). By default with Publish Web Site command in VS2005
(essentially means precompiling for deployment where you also get
deployable
files) you get something, actually quite bunch of files to deploy to the
server

If you want to get to the model where you get single dll for building the
application, you have left two choices depending on the model how you
work.

1. if you want to work with the "web site" model, default in VS2005,
where
dll is not done when you build the web site project , you can download
Web
Deployment Project (WDP) add-on. It is basically seperate project to
VS2005,
to make deployable files (ddls) based on certain conditions you set
http://msdn.microsoft.com/asp.net/re...structure/wdp/

2) If you want to work with very similar model as you did in VS2003,
where
you were always required to have explicit compilation step (which
produced
one dll), but on the other hand certain compilation related semantics
were
very clear (which have changed with web site model), you can download Web
Application Project add-on
http://msdn.microsoft.com/asp.net/re...structure/wap/

I know, at first this seems very, very confusing, so you might want to
have
a look at these forum & blog posts to understand what the differences
really
are. There are no right or wrong answers right away, it is question of
how
you work, you get things done with both models, equally.

http://forums.asp.net/thread/1256579.aspx
http://webproject.scottgu.com
http://weblogs.asp.net/scottgu/archi...05/442032.aspx

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"Mike Hildner" <mh************ *@afweb.com> wrote in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
> 2.0 changed the way that works. Instead of putting the .dll in the bin
> folder, things are located (default) at
> C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \Temporary ASP.NET Files
>
> Although if you're using any third party controls (like Infragistics),
> you'll have an App_Licenses.dl l in the bin folder.
>
> Mike
>
> "WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in
> message
> news:06******** *************** ***********@mic rosoft.com...
>>I have a local serve that holds my source code and i'm using vs2005 for
>>2.0
>> to build the site. I'm runingthe site off my local pc (filesystem). I
>> built
>> the site but can't find the dll or the bin directory.
>> Any Ideas?
>>
>>
>> --
>> thanks (as always)
>> some day i''m gona pay this forum back for all the help i''m getting
>> kes
>
>


Apr 17 '06 #7
Not sure, never tried.

Mike

"WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in message
news:1C******** *************** ***********@mic rosoft.com...
can these then be copied to the bin folder on the live web server?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Mike Hildner" wrote:
2.0 changed the way that works. Instead of putting the .dll in the bin
folder, things are located (default) at
C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \Temporary ASP.NET Files

Although if you're using any third party controls (like Infragistics),
you'll have an App_Licenses.dl l in the bin folder.

Mike

"WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in
message
news:06******** *************** ***********@mic rosoft.com...
>I have a local serve that holds my source code and i'm using vs2005 for
>2.0
> to build the site. I'm runingthe site off my local pc (filesystem). I
> built
> the site but can't find the dll or the bin directory.
> Any Ideas?
>
>
> --
> thanks (as always)
> some day i''m gona pay this forum back for all the help i''m getting
> kes


Apr 17 '06 #8
They can be excluded from the deployment, as you can configure what the wdp
bundles within the deployment site. See the link about WDP and there "Using
Web Deployment Projects with Visual Studio 2005." guide

Plus that since WDP actually creates just a dll, you could also deploy other
files (aspx's etc) manually.

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in message
news:E8******** *************** ***********@mic rosoft.com...
Thanks for responding,
What do you do about the images and other files that get deleted?

--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Teemu Keiski" wrote:
Yup,

well, basically the one option without even doing the publish step
(essentially precompilation for deployment) is just xcopy everything on
the
production server. It means deploying also the source code.

Personally, I prefer web deployment projects with the default model
because
I get all the benefits of the new model (wdp doesn't change that, it isd
separate project is vs solution), but I also get the neatness of
deployment
plus other things that WDPs bring (dll per folder, web.config settings
switch, control over what is deployed e.g MSBuild ) and so on.

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in
message
news:D3******** *************** ***********@mic rosoft.com...
>I perfer to use the builtin deployment, but this will delete the images
>(and
> other files) that exist on the wbsite. I don't mind copyingthe files
> manuelly, but as you said the dlls are not (officially) created when
> you
> hit
> build site. So i've tried option 1 and this will work, but is not the
> way
> they are recomending.
> Thanks
> kes
> --
> thanks (as always)
> some day i''m gona pay this forum back for all the help i''m getting
> kes
>
>
> "Teemu Keiski" wrote:
>
>> And the model how you can actually get dlls is somewhat complicated
>> (due
>> to
>> lots of options). By default with Publish Web Site command in VS2005
>> (essentially means precompiling for deployment where you also get
>> deployable
>> files) you get something, actually quite bunch of files to deploy to
>> the
>> server
>>
>> If you want to get to the model where you get single dll for building
>> the
>> application, you have left two choices depending on the model how you
>> work.
>>
>> 1. if you want to work with the "web site" model, default in VS2005,
>> where
>> dll is not done when you build the web site project , you can download
>> Web
>> Deployment Project (WDP) add-on. It is basically seperate project to
>> VS2005,
>> to make deployable files (ddls) based on certain conditions you set
>> http://msdn.microsoft.com/asp.net/re...structure/wdp/
>>
>> 2) If you want to work with very similar model as you did in VS2003,
>> where
>> you were always required to have explicit compilation step (which
>> produced
>> one dll), but on the other hand certain compilation related semantics
>> were
>> very clear (which have changed with web site model), you can download
>> Web
>> Application Project add-on
>> http://msdn.microsoft.com/asp.net/re...structure/wap/
>>
>> I know, at first this seems very, very confusing, so you might want to
>> have
>> a look at these forum & blog posts to understand what the differences
>> really
>> are. There are no right or wrong answers right away, it is question of
>> how
>> you work, you get things done with both models, equally.
>>
>> http://forums.asp.net/thread/1256579.aspx
>> http://webproject.scottgu.com
>> http://weblogs.asp.net/scottgu/archi...05/442032.aspx
>>
>> --
>> Teemu Keiski
>> ASP.NET MVP, AspInsider
>> Finland, EU
>> http://blogs.aspadvice.com/joteke
>>
>> "Mike Hildner" <mh************ *@afweb.com> wrote in message
>> news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
>> > 2.0 changed the way that works. Instead of putting the .dll in the
>> > bin
>> > folder, things are located (default) at
>> > C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \Temporary ASP.NET
>> > Files
>> >
>> > Although if you're using any third party controls (like
>> > Infragistics),
>> > you'll have an App_Licenses.dl l in the bin folder.
>> >
>> > Mike
>> >
>> > "WebBuilder 451" <We***********@ discussions.mic rosoft.com> wrote in
>> > message
>> > news:06******** *************** ***********@mic rosoft.com...
>> >>I have a local serve that holds my source code and i'm using vs2005
>> >>for
>> >>2.0
>> >> to build the site. I'm runingthe site off my local pc (filesystem).
>> >> I
>> >> built
>> >> the site but can't find the dll or the bin directory.
>> >> Any Ideas?
>> >>
>> >>
>> >> --
>> >> thanks (as always)
>> >> some day i''m gona pay this forum back for all the help i''m
>> >> getting
>> >> kes
>> >
>> >
>>
>>
>>


Apr 18 '06 #9

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

Similar topics

47
3642
by: Andrey Tatarinov | last post by:
Hi. It would be great to be able to reverse usage/definition parts in haskell-way with "where" keyword. Since Python 3 would miss lambda, that would be extremly useful for creating readable sources. Usage could be something like: >>> res = where: >>> def f(x):
3
22004
by: A.V.C. | last post by:
Hello, I found members of this group very helpful for my last queries. Have one problem with CASE. I can use the column name alias in Order By Clause but unable to use it in WHERE CLAUSE. PLS TELL ME IF IT IS POSSIBLE TO USE IT IN WHERE CLAUSE AND SOME ALTERNATIVE. QUERY: SELECT
3
2286
by: Xiangliang Meng | last post by:
Hi, all. In 1998, I graduated from Computer Science Dept. in a university in China. Since then, I've been using C Language for almost 6 years. Although I'm using C++ in my current job, I'm also interested in understanding C more and deeper at the same time. In the past half year, I decide to improve myself on C, read some books on C and digest some posts on comp.lang.c and comp.lang.c++. Now, I feel I have a better insight on C than...
7
3044
by: Britney | last post by:
Original code: this.oleDbSelectCommand1.CommandText = "SELECT TOP 100 user_id, password, nick_name, sex, age, has_picture, city, state, " + "country FROM dbo.users WHERE (has_picture = ?) AND (sex = ?) ORDER BY age " this.oleDbSelectCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("has_picture", System.Data.OleDb.OleDbType.Boolean, 1, "has_picture")); this.oleDbSelectCommand1.Parameters.Add(new...
5
2403
by: comp.lang.php | last post by:
if ($willLimitByDB) $sql = preg_replace('/#(+)#/i', '$$1', $sql); This does not give me the results I want, instead of the value of $where in $sql, I literally get '$where' instead. How do I substitute #where# with $where? Thanx Phil
5
5512
by: John | last post by:
I just cannot manage to perform a SELECT query with NULL parameter... My CATEGORY table does have one row where TCATEGORYPARENTID is null (real DB null value). TCATEGORYID and TCATEGORYPARENTID are uniqueidentifier columns. My questions: - is Type="Object", below, necessary? - what shall I specify for DefaultValue in my function? I tried everything.
0
80713
NeoPa
by: NeoPa | last post by:
Background Whenever code is used there must be a way to differentiate the actual code (which should be interpreted directly) with literal strings which should be interpreted as data. Numbers don't usually have this problem but Dates can too. Debug.Print Me.ControlName refers to a control on a form. Whereas, Debug.Print "Me.ControlName" simply prints the literal text Me.ControlName Where to Use Each Quote Type (' or ") In some places...
1
2769
by: not_a_commie | last post by:
I was hoping for increased functionality with the where clause in C# 3.0. Using the new keyword 'var' would really allow us to take nice advantage of these. Specifically: 1. I want to limit it to primitives: "where T : System.Type.Primitive" or something like that. 2. I want to limit it to an unspecified generic: "where T : List<>". 3. I want to limit it to a generic with a subset of types: "where T : List<new TTwhere TT : class" or...
9
19158
by: Emin | last post by:
Dear Experts, I have a fairly simple query in which adding a where clause slows things down by at least a factor of 100. The following is the slow version of the query ------------------------- SELECT * FROM ( Select x.event_date From x FULL OUTER JOIN y ON x.event_date = y.event_date
8
3481
by: chrisdavis | last post by:
I'm trying to filter by query or put those values in a distinct query in a where clause in some sort of list that it goes through but NOT at the same time. Example: ROW1 ROW2 ROW3 ROW4 , etc. I want to go to the first row, do a WHERE statement, return the
0
9387
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
10148
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10002
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
9823
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
8822
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
7368
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
5270
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...
1
3917
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
3528
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.