15,746,883 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View Javascript questions
View C++ questions
View Python questions
View Java questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by a_alise (Top 9 by date)
a_alise
11-Nov-21 4:14am
View
I tried All You Send In Base64 C++ - Google Search[^] But There No Resault , I Need Full Code ,Thank You
a_alise
10-Jan-17 8:39am
View
please help me
a_alise
10-Jan-17 8:08am
View
i didn't add any webmethod
can you show me it in my project
as it be clear above
???
a_alise
8-Jan-17 8:48am
View
$('nav').click(function () { //tab click event, note the "." here means css class
var id = "MainContain"; //to get div id ex: "mytab_name1"
var divid = '#' + id;
$(divid).empty(); //clear the div contents, note the "#" here means id
//retrieve data with Ajax ex:
//in data (this is optional) you can pass some identifier (or multiple) to indicate which dynamic content will loaded on server..."parameter1" or whatever you name it will be paramter in WebMethod
$.ajax({
type: "POST",
url: "url to method [declare this as static and WebMethod]",
data: {
parameter1: id
},
success: function (response) {
//check if "response.SomeProperty" is sufficient or "response.d.SomeProperty" as you're using ASP.NET Web Forms
var html = '' + response.SomeProperty + ''; //build your div content using the response
$(divid).append($.parseHTML(html)); //render the string as html elements and insert inside the div
//the tabs will remain the same but contents of div should change on tab change
},
error: function () {
//handle any error ex:
var html = 'Error loading data';
$(divid).append($.parseHTML(html));
}
});
});
Have Error When Do it
Error loading data ..
a_alise
8-Jan-17 8:41am
View
yeah i try it , but i think not work
can you help me in my vertical menu that above
please
a_alise
7-Jan-17 13:51pm
View
<asp:Label ID ="_Dashboard" runat="server" Text="Dashboard" />
<asp:Label ID ="_Configurations" runat="server" Text="Configurations" />
<asp:Label ID ="_Prefrences" runat="server" Text="Prefrences" />
<asp:Label ID ="_Security" runat="server" Text="Security" />
<asp:Label ID ="_Roles" runat="server" Text="Roles" />
<asp:Label ID ="_Users" runat="server" Text="Users" />
<asp:Label ID ="_AccessRights" runat="server" Text="Access Rights" />
<asp:Label ID ="_Profiles" runat="server" Text="Profiles" />
<asp:Label ID ="_UserProfile" runat="server" Text="User Profile" />
<asp:Label ID ="_CompanyProfile" runat="server" Text="Company Profile" />
<asp:Label ID ="_Password" runat="server" Text="Password" />
<asp:Label ID ="_General" runat="server" Text="General" />
<asp:Label ID ="_Cities" runat="server" Text="Cities" />
<asp:Label ID ="_Nationality" runat="server" Text="Nationality" />
<asp:Label ID ="_Currency" runat="server" Text="Currency" />
<asp:Label ID ="_Collectors" runat="server" Text="Collectors" />
<asp:Label ID ="_JobManagement" runat="server" Text="Job Management" />
a_alise
7-Jan-17 13:50pm
View
<asp:Label ID ="_Dashboard" runat="server" Text="Dashboard" />
<asp:Label ID ="_Configurations" runat="server" Text="Configurations" />
<asp:Label ID ="_Prefrences" runat="server" Text="Prefrences" />
<asp:Label ID ="_Security" runat="server" Text="Security" />
<asp:Label ID ="_Roles" runat="server" Text="Roles" />
<asp:Label ID ="_Users" runat="server" Text="Users" />
<asp:Label ID ="_AccessRights" runat="server" Text="Access Rights" />
<asp:Label ID ="_Profiles" runat="server" Text="Profiles" />
<asp:Label ID ="_UserProfile" runat="server" Text="User Profile" />
<asp:Label ID ="_CompanyProfile" runat="server" Text="Company Profile" />
<asp:Label ID ="_Password" runat="server" Text="Password" />
<asp:Label ID ="_General" runat="server" Text="General" />
<asp:Label ID ="_Cities" runat="server" Text="Cities" />
<asp:Label ID ="_Nationality" runat="server" Text="Nationality" />
<asp:Label ID ="_Currency" runat="server" Text="Currency" />
<asp:Label ID ="_Collectors" runat="server" Text="Collectors" />
<asp:Label ID ="_JobManagement" runat="server" Text="Job Management" />
a_alise
16-Dec-16 17:58pm
View
Can I See Small Example Test To Do it
With Vertical Menu Jquery And Ajax
I Tried But Didn't Work
a_alise
16-Dec-16 17:56pm
View
Yeah ASP.NET Web Forms ,
Can Have Small Example Or Test For Using That
Vertical JQuery Menu With Ajax In Content
Because I Tried To Use It But Not Work
How I Can Update Specific Parts Of Page
as Update Contecnt And Load Web Forms To Content Of Master page When Click Menu
Show More