473,503 Members | 1,783 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

cfinclude functionality in ASP.NET

Trying to achieve this functionality in ASP.NET.
<cfif NOT session.loggedin>
<cfinclude template="loginPage.cfm">
<cfelse>
<cfif session.loginType EQ "Instructor">
... show Instructor menu...
<cfif form.menuItem EQ 1>
<cfinclude template="MenuItem1Page.cfm">
<cfelseif form.menuItem EQ 2>
.......
</cfif>
<cfelseif session.loginType EQ "Reviewer">
... show Reviewer menu ...
... includes for Reviewers
</cfif>
</cfif>
Trying nested master pages but having trouble implementing the nesting
(Whidbey beta 1). Also not sure how to navigate between NOT logged in and
logged in and among menuItem pages. Thanks in advance.
Nov 19 '05 #1
7 2238
I'm not familiar with Cold Fusion, but I know it is similar to ASP. So,
forgive me if I interpret you incorrectly, but it sure looks like your
"cfinclude" tag is, in essence, a dynamic include file. If so, as ASP.Net is
object-oriented, you would want to create a class instead, either a User
Control (if you want to use a template) or a Server Control (which is a pure
class), and conditionally create an instance of it and place it in your
page.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Peter" <Pe***@discussions.microsoft.com> wrote in message
news:89**********************************@microsof t.com...
Trying to achieve this functionality in ASP.NET.
<cfif NOT session.loggedin>
<cfinclude template="loginPage.cfm">
<cfelse>
<cfif session.loginType EQ "Instructor">
... show Instructor menu...
<cfif form.menuItem EQ 1>
<cfinclude template="MenuItem1Page.cfm">
<cfelseif form.menuItem EQ 2>
.......
</cfif>
<cfelseif session.loginType EQ "Reviewer">
... show Reviewer menu ...
... includes for Reviewers
</cfif>
</cfif>
Trying nested master pages but having trouble implementing the nesting
(Whidbey beta 1). Also not sure how to navigate between NOT logged in and
logged in and among menuItem pages. Thanks in advance.

Nov 19 '05 #2
Thanks, Kevn. You inferred correctly re Cold Fusion. I think a structure
like this would work - pseudocode:
Main.master (<html><links><meta> etc.)
if not logged in then
LoginRoutine.aspx
elseif login successful then
if user is Instructor then
Instructor.master (containing menu options)
InstructorFunction_1.aspx
......
InstructorFunction_N.aspx
elseif user is Reviewer then
Reviewer.master (containing reviewer menu options)
ReviewerFuntion_1.aspx
....
ReviewerFuntion_N.aspx
endif
endif

I think I've figured out the basic plumbing of nested masters since my
original post.
But still not sure of best way to transfer from page to page. Have been
doing the following which seems to work but it's unappealing:

httpContext.Current.Response.Redirect(xxx.aspx) in a content page's
Load_Page method.

Is there a better way?

"Kevin Spencer" wrote:
I'm not familiar with Cold Fusion, but I know it is similar to ASP. So,
forgive me if I interpret you incorrectly, but it sure looks like your
"cfinclude" tag is, in essence, a dynamic include file. If so, as ASP.Net is
object-oriented, you would want to create a class instead, either a User
Control (if you want to use a template) or a Server Control (which is a pure
class), and conditionally create an instance of it and place it in your
page.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Peter" <Pe***@discussions.microsoft.com> wrote in message
news:89**********************************@microsof t.com...
Trying to achieve this functionality in ASP.NET.
<cfif NOT session.loggedin>
<cfinclude template="loginPage.cfm">
<cfelse>
<cfif session.loginType EQ "Instructor">
... show Instructor menu...
<cfif form.menuItem EQ 1>
<cfinclude template="MenuItem1Page.cfm">
<cfelseif form.menuItem EQ 2>
.......
</cfif>
<cfelseif session.loginType EQ "Reviewer">
... show Reviewer menu ...
... includes for Reviewers
</cfif>
</cfif>
Trying nested master pages but having trouble implementing the nesting
(Whidbey beta 1). Also not sure how to navigate between NOT logged in and
logged in and among menuItem pages. Thanks in advance.


Nov 19 '05 #3
I really don't think you want nested pages. What you want is a User Control
(which is almost like a Page, but is designed to be used IN a page), or a
Server Control. Or you may want to do a Response.Redirect or a
Server.Transfer to a differrent page.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Peter" <Pe***@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
Thanks, Kevn. You inferred correctly re Cold Fusion. I think a structure
like this would work - pseudocode:
Main.master (<html><links><meta> etc.)
if not logged in then
LoginRoutine.aspx
elseif login successful then
if user is Instructor then
Instructor.master (containing menu options)
InstructorFunction_1.aspx
......
InstructorFunction_N.aspx
elseif user is Reviewer then
Reviewer.master (containing reviewer menu options)
ReviewerFuntion_1.aspx
....
ReviewerFuntion_N.aspx
endif
endif

I think I've figured out the basic plumbing of nested masters since my
original post.
But still not sure of best way to transfer from page to page. Have been
doing the following which seems to work but it's unappealing:

httpContext.Current.Response.Redirect(xxx.aspx) in a content page's
Load_Page method.

Is there a better way?

"Kevin Spencer" wrote:
I'm not familiar with Cold Fusion, but I know it is similar to ASP. So,
forgive me if I interpret you incorrectly, but it sure looks like your
"cfinclude" tag is, in essence, a dynamic include file. If so, as ASP.Net
is
object-oriented, you would want to create a class instead, either a User
Control (if you want to use a template) or a Server Control (which is a
pure
class), and conditionally create an instance of it and place it in your
page.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Peter" <Pe***@discussions.microsoft.com> wrote in message
news:89**********************************@microsof t.com...
> Trying to achieve this functionality in ASP.NET.
> <cfif NOT session.loggedin>
> <cfinclude template="loginPage.cfm">
> <cfelse>
> <cfif session.loginType EQ "Instructor">
> ... show Instructor menu...
> <cfif form.menuItem EQ 1>
> <cfinclude template="MenuItem1Page.cfm">
> <cfelseif form.menuItem EQ 2>
> .......
> </cfif>
> <cfelseif session.loginType EQ "Reviewer">
> ... show Reviewer menu ...
> ... includes for Reviewers
> </cfif>
> </cfif>
> Trying nested master pages but having trouble implementing the nesting
> (Whidbey beta 1). Also not sure how to navigate between NOT logged in
> and
> logged in and among menuItem pages. Thanks in advance.


Nov 19 '05 #4
Thanks, Kevin.
I guess you mean something like this schematically:
InstructorFunctions.aspx with these:
User control ID = menu
User control ID = InstructorFunction_1 (Invoked conditionally)
User control ID = InstructorFunction_2 (Invoked conditionally)
....
User control ID = InstructorFunction_1 (Invoked conditionally)

I'll try this.

"Kevin Spencer" wrote:
I really don't think you want nested pages. What you want is a User Control
(which is almost like a Page, but is designed to be used IN a page), or a
Server Control. Or you may want to do a Response.Redirect or a
Server.Transfer to a differrent page.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Peter" <Pe***@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
Thanks, Kevn. You inferred correctly re Cold Fusion. I think a structure
like this would work - pseudocode:
Main.master (<html><links><meta> etc.)
if not logged in then
LoginRoutine.aspx
elseif login successful then
if user is Instructor then
Instructor.master (containing menu options)
InstructorFunction_1.aspx
......
InstructorFunction_N.aspx
elseif user is Reviewer then
Reviewer.master (containing reviewer menu options)
ReviewerFuntion_1.aspx
....
ReviewerFuntion_N.aspx
endif
endif

I think I've figured out the basic plumbing of nested masters since my
original post.
But still not sure of best way to transfer from page to page. Have been
doing the following which seems to work but it's unappealing:

httpContext.Current.Response.Redirect(xxx.aspx) in a content page's
Load_Page method.

Is there a better way?

"Kevin Spencer" wrote:
I'm not familiar with Cold Fusion, but I know it is similar to ASP. So,
forgive me if I interpret you incorrectly, but it sure looks like your
"cfinclude" tag is, in essence, a dynamic include file. If so, as ASP.Net
is
object-oriented, you would want to create a class instead, either a User
Control (if you want to use a template) or a Server Control (which is a
pure
class), and conditionally create an instance of it and place it in your
page.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Peter" <Pe***@discussions.microsoft.com> wrote in message
news:89**********************************@microsof t.com...
> Trying to achieve this functionality in ASP.NET.
> <cfif NOT session.loggedin>
> <cfinclude template="loginPage.cfm">
> <cfelse>
> <cfif session.loginType EQ "Instructor">
> ... show Instructor menu...
> <cfif form.menuItem EQ 1>
> <cfinclude template="MenuItem1Page.cfm">
> <cfelseif form.menuItem EQ 2>
> .......
> </cfif>
> <cfelseif session.loginType EQ "Reviewer">
> ... show Reviewer menu ...
> ... includes for Reviewers
> </cfif>
> </cfif>
> Trying nested master pages but having trouble implementing the nesting
> (Whidbey beta 1). Also not sure how to navigate between NOT logged in
> and
> logged in and among menuItem pages. Thanks in advance.


Nov 19 '05 #5
Hi Peter,

That looks about right to me! :)

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Peter" <Pe***@discussions.microsoft.com> wrote in message
news:BB**********************************@microsof t.com...
Thanks, Kevin.
I guess you mean something like this schematically:
InstructorFunctions.aspx with these:
User control ID = menu
User control ID = InstructorFunction_1 (Invoked conditionally)
User control ID = InstructorFunction_2 (Invoked conditionally)
....
User control ID = InstructorFunction_1 (Invoked conditionally)

I'll try this.

"Kevin Spencer" wrote:
I really don't think you want nested pages. What you want is a User
Control
(which is almost like a Page, but is designed to be used IN a page), or a
Server Control. Or you may want to do a Response.Redirect or a
Server.Transfer to a differrent page.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Peter" <Pe***@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
> Thanks, Kevn. You inferred correctly re Cold Fusion. I think a
> structure
> like this would work - pseudocode:
> Main.master (<html><links><meta> etc.)
> if not logged in then
> LoginRoutine.aspx
> elseif login successful then
> if user is Instructor then
> Instructor.master (containing menu options)
> InstructorFunction_1.aspx
> ......
> InstructorFunction_N.aspx
> elseif user is Reviewer then
> Reviewer.master (containing reviewer menu options)
> ReviewerFuntion_1.aspx
> ....
> ReviewerFuntion_N.aspx
> endif
> endif
>
> I think I've figured out the basic plumbing of nested masters since my
> original post.
> But still not sure of best way to transfer from page to page. Have
> been
> doing the following which seems to work but it's unappealing:
>
> httpContext.Current.Response.Redirect(xxx.aspx) in a content page's
> Load_Page method.
>
> Is there a better way?
>
> "Kevin Spencer" wrote:
>
>> I'm not familiar with Cold Fusion, but I know it is similar to ASP.
>> So,
>> forgive me if I interpret you incorrectly, but it sure looks like your
>> "cfinclude" tag is, in essence, a dynamic include file. If so, as
>> ASP.Net
>> is
>> object-oriented, you would want to create a class instead, either a
>> User
>> Control (if you want to use a template) or a Server Control (which is
>> a
>> pure
>> class), and conditionally create an instance of it and place it in
>> your
>> page.
>>
>> --
>> HTH,
>>
>> Kevin Spencer
>> Microsoft MVP
>> ..Net Developer
>> Ambiguity has a certain quality to it.
>>
>> "Peter" <Pe***@discussions.microsoft.com> wrote in message
>> news:89**********************************@microsof t.com...
>> > Trying to achieve this functionality in ASP.NET.
>> > <cfif NOT session.loggedin>
>> > <cfinclude template="loginPage.cfm">
>> > <cfelse>
>> > <cfif session.loginType EQ "Instructor">
>> > ... show Instructor menu...
>> > <cfif form.menuItem EQ 1>
>> > <cfinclude template="MenuItem1Page.cfm">
>> > <cfelseif form.menuItem EQ 2>
>> > .......
>> > </cfif>
>> > <cfelseif session.loginType EQ "Reviewer">
>> > ... show Reviewer menu ...
>> > ... includes for Reviewers
>> > </cfif>
>> > </cfif>
>> > Trying nested master pages but having trouble implementing the
>> > nesting
>> > (Whidbey beta 1). Also not sure how to navigate between NOT logged
>> > in
>> > and
>> > logged in and among menuItem pages. Thanks in advance.
>>
>>
>>


Nov 19 '05 #6
Hi Peter,

Also, if you're using User Controls, be aware that they CAN be conditionally
loaded (that is, not be in the Page Template, but loaded into the Page at
run-time). This is done by using the Page.LoadControl() method.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Peter" <Pe***@discussions.microsoft.com> wrote in message
news:BB**********************************@microsof t.com...
Thanks, Kevin.
I guess you mean something like this schematically:
InstructorFunctions.aspx with these:
User control ID = menu
User control ID = InstructorFunction_1 (Invoked conditionally)
User control ID = InstructorFunction_2 (Invoked conditionally)
....
User control ID = InstructorFunction_1 (Invoked conditionally)

I'll try this.

"Kevin Spencer" wrote:
I really don't think you want nested pages. What you want is a User
Control
(which is almost like a Page, but is designed to be used IN a page), or a
Server Control. Or you may want to do a Response.Redirect or a
Server.Transfer to a differrent page.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Peter" <Pe***@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
> Thanks, Kevn. You inferred correctly re Cold Fusion. I think a
> structure
> like this would work - pseudocode:
> Main.master (<html><links><meta> etc.)
> if not logged in then
> LoginRoutine.aspx
> elseif login successful then
> if user is Instructor then
> Instructor.master (containing menu options)
> InstructorFunction_1.aspx
> ......
> InstructorFunction_N.aspx
> elseif user is Reviewer then
> Reviewer.master (containing reviewer menu options)
> ReviewerFuntion_1.aspx
> ....
> ReviewerFuntion_N.aspx
> endif
> endif
>
> I think I've figured out the basic plumbing of nested masters since my
> original post.
> But still not sure of best way to transfer from page to page. Have
> been
> doing the following which seems to work but it's unappealing:
>
> httpContext.Current.Response.Redirect(xxx.aspx) in a content page's
> Load_Page method.
>
> Is there a better way?
>
> "Kevin Spencer" wrote:
>
>> I'm not familiar with Cold Fusion, but I know it is similar to ASP.
>> So,
>> forgive me if I interpret you incorrectly, but it sure looks like your
>> "cfinclude" tag is, in essence, a dynamic include file. If so, as
>> ASP.Net
>> is
>> object-oriented, you would want to create a class instead, either a
>> User
>> Control (if you want to use a template) or a Server Control (which is
>> a
>> pure
>> class), and conditionally create an instance of it and place it in
>> your
>> page.
>>
>> --
>> HTH,
>>
>> Kevin Spencer
>> Microsoft MVP
>> ..Net Developer
>> Ambiguity has a certain quality to it.
>>
>> "Peter" <Pe***@discussions.microsoft.com> wrote in message
>> news:89**********************************@microsof t.com...
>> > Trying to achieve this functionality in ASP.NET.
>> > <cfif NOT session.loggedin>
>> > <cfinclude template="loginPage.cfm">
>> > <cfelse>
>> > <cfif session.loginType EQ "Instructor">
>> > ... show Instructor menu...
>> > <cfif form.menuItem EQ 1>
>> > <cfinclude template="MenuItem1Page.cfm">
>> > <cfelseif form.menuItem EQ 2>
>> > .......
>> > </cfif>
>> > <cfelseif session.loginType EQ "Reviewer">
>> > ... show Reviewer menu ...
>> > ... includes for Reviewers
>> > </cfif>
>> > </cfif>
>> > Trying nested master pages but having trouble implementing the
>> > nesting
>> > (Whidbey beta 1). Also not sure how to navigate between NOT logged
>> > in
>> > and
>> > logged in and among menuItem pages. Thanks in advance.
>>
>>
>>


Nov 19 '05 #7
Got it! Have the menu working now as user control. With ViewState enabled,
using
Page_Load()
{
if(!IsPostBack)
{
... add menu items here ...
}
}

Love the tip on Page.LoadControl().

Thanks,

Peter

"Kevin Spencer" wrote:
Hi Peter,

Also, if you're using User Controls, be aware that they CAN be conditionally
loaded (that is, not be in the Page Template, but loaded into the Page at
run-time). This is done by using the Page.LoadControl() method.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Peter" <Pe***@discussions.microsoft.com> wrote in message
news:BB**********************************@microsof t.com...
Thanks, Kevin.
I guess you mean something like this schematically:
InstructorFunctions.aspx with these:
User control ID = menu
User control ID = InstructorFunction_1 (Invoked conditionally)
User control ID = InstructorFunction_2 (Invoked conditionally)
....
User control ID = InstructorFunction_1 (Invoked conditionally)

I'll try this.

"Kevin Spencer" wrote:
I really don't think you want nested pages. What you want is a User
Control
(which is almost like a Page, but is designed to be used IN a page), or a
Server Control. Or you may want to do a Response.Redirect or a
Server.Transfer to a differrent page.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Peter" <Pe***@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
> Thanks, Kevn. You inferred correctly re Cold Fusion. I think a
> structure
> like this would work - pseudocode:
> Main.master (<html><links><meta> etc.)
> if not logged in then
> LoginRoutine.aspx
> elseif login successful then
> if user is Instructor then
> Instructor.master (containing menu options)
> InstructorFunction_1.aspx
> ......
> InstructorFunction_N.aspx
> elseif user is Reviewer then
> Reviewer.master (containing reviewer menu options)
> ReviewerFuntion_1.aspx
> ....
> ReviewerFuntion_N.aspx
> endif
> endif
>
> I think I've figured out the basic plumbing of nested masters since my
> original post.
> But still not sure of best way to transfer from page to page. Have
> been
> doing the following which seems to work but it's unappealing:
>
> httpContext.Current.Response.Redirect(xxx.aspx) in a content page's
> Load_Page method.
>
> Is there a better way?
>
> "Kevin Spencer" wrote:
>
>> I'm not familiar with Cold Fusion, but I know it is similar to ASP.
>> So,
>> forgive me if I interpret you incorrectly, but it sure looks like your
>> "cfinclude" tag is, in essence, a dynamic include file. If so, as
>> ASP.Net
>> is
>> object-oriented, you would want to create a class instead, either a
>> User
>> Control (if you want to use a template) or a Server Control (which is
>> a
>> pure
>> class), and conditionally create an instance of it and place it in
>> your
>> page.
>>
>> --
>> HTH,
>>
>> Kevin Spencer
>> Microsoft MVP
>> ..Net Developer
>> Ambiguity has a certain quality to it.
>>
>> "Peter" <Pe***@discussions.microsoft.com> wrote in message
>> news:89**********************************@microsof t.com...
>> > Trying to achieve this functionality in ASP.NET.
>> > <cfif NOT session.loggedin>
>> > <cfinclude template="loginPage.cfm">
>> > <cfelse>
>> > <cfif session.loginType EQ "Instructor">
>> > ... show Instructor menu...
>> > <cfif form.menuItem EQ 1>
>> > <cfinclude template="MenuItem1Page.cfm">
>> > <cfelseif form.menuItem EQ 2>
>> > .......
>> > </cfif>
>> > <cfelseif session.loginType EQ "Reviewer">
>> > ... show Reviewer menu ...
>> > ... includes for Reviewers
>> > </cfif>
>> > </cfif>
>> > Trying nested master pages but having trouble implementing the
>> > nesting
>> > (Whidbey beta 1). Also not sure how to navigate between NOT logged
>> > in
>> > and
>> > logged in and among menuItem pages. Thanks in advance.
>>
>>
>>


Nov 19 '05 #8

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

Similar topics

2
2040
by: Vikas | last post by:
Hi y'all, I need logging functionality to provide me following: - logging levels that can be set at run-time. - able to output to different files for different levels - thread safe - line,...
2
382
by: Tom | last post by:
Hello, I'm looking for a tool that would allow me to create a web page with the spreadsheet like functionality. Basically, I want to be able to type in a number in the cell and have all totals...
25
7527
by: KK | last post by:
Hi, I am using history.go(-1) for implementing the back button functionality. Its working fine but with this exception. 1. The page which is having back button has some hyperlinks on it. ...
0
1258
by: blongmire | last post by:
OS: WinXP Home Access 2000 Word 2000 I loaded 1998 vintage 16-bit business mapping software onto a PC and I think it overlayed some OS files dealing with DDE functionality. After that software...
0
1834
by: rellik | last post by:
Hi All, I've run into a problem with the MenuStrip control and any help would be greatly appreciated! The problem I've got is that when use a control derived from the MenuStrip class all MDI...
1
1090
by: Srini | last post by:
How do I do a functionality for a ASP.NET web application? Is there an automated way to do this? Can ACT do functionality test apart from the stress tests? When I make some change to the...
11
10591
by: MadMonk | last post by:
Hi, I need to write a small Windows application (console or forms) (for Windows XP SP2 & Windows Server 2003), which will check a folder for the presence of some files, and if they exist, it...
1
1224
by: Monty | last post by:
I know this isn't necessarily an ASP.Net question, but it is web programming and I intend to try it using ASP.Net, I just need to get pointed in the right direction. I've seen some sites that allow...
3
4066
by: YaoBao | last post by:
In my main page, I use <cfinclude> tag to include my header and footer. But I get error. "Context validation error for the cfif tag. The start tag must have a matching end tag. An explicit end...
0
7280
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
7330
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
7460
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
5578
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
5014
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
4672
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...
0
1512
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 ...
1
736
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
380
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...

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.