AJAX :: Advantage Of [WebMethod] Function At Aspx Page Called By JS Code?
Dec 19, 2010
I have this function in aspx page.
[Code]....
and I call this function from JavaScript as below:
[Code]....
I want to know what is this technique called and what is the advantage of calling the function on that way
View 3 Replies
Similar Messages:
Aug 20, 2012
Looking for sample to access the hidden variable which is declared in the aspx page in the webmethod.
View 1 Replies
May 19, 2010
I have a service that works great on my development box. It uses JQuery to hit my web service, and then the JSON results are sent back.
The web service is located on our basePage.cs. We didn't want to put out an external WebService for this. Our on beta box something different is happening.
The web page seems to be trying to call the web method correctly - the JSON data is being sent... but the server doesn't seem to know it's a webmethod. here's my service function (it's in our basepage.cs which inherits from Page).
[Code]....
View 2 Replies
May 7, 2015
My problem is that I have a jqury function basically I want to add gridview row into data base .so that pupose I am doing that by accessing webmethod ,but the web method can’t call from that code .
My data can’t save into data base I will check it.value should be passed but problem is that this function can’t call webmethod I will check it doing debudg.
my function should be call webmethod
Following my code
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"> </script>
<script type="text/javascript">
$(function () {
[Code].....
View 1 Replies
May 7, 2015
I want to ask that if i have 3 content pages and 1 master page , e.g.
1 - Site.master
2 - DailyLog.aspx
3 - ProjectMaker.aspx
4 - ProjectProfile.aspx
so adding this c# coding :
protected void Page_Load(object sender, EventArgs e)
{
Session["Name"] = "Mudassar";
Configuration config = WebConfigurationManager.OpenWebConfiguration("~/Web.Config");
SessionStateSection section = (SessionStateSection)config.GetSection("system.web/sessionState");
int timeout = (int)section.Timeout.TotalMinutes * 1000 * 60;
[Code] ....
to only DailyLog.aspx , is sufficient for all pages ? because i want to show alert on every page ... Or do i have to insert the above c# code in all the content pages ?
View 1 Replies
Nov 24, 2010
how can i call javascript function from code behind from my Page.aspx.vb. in my Page i have a button i want to add this function to my button onclick="refreshParent();"
View 8 Replies
Oct 26, 2010
I have an ASPX page which hosts a Custom Control. That custom control needs to call an ASMX web service. I would use a PageMethod, if the fact that I'm calling from within a Custom Control didn't preclude that. I'm looking for some guidance on the most effective way to try and lock down the ASMX call such that it will only succeed for my users calling it from my ASPX page - and not for anyone trying to call it from elsewhere. I've seen various ideas around session variables and so on.
View 5 Replies
Feb 22, 2011
HWhen I want to use AJAX, primarily with JQuery .ajax function, I use functions within the .aspx.cs of the same page with [WebMethod].
I dont like this method very much because everyone can tell which function I use, and with no problem they can use it too.
My guess is that theres a better way to do this, Am I right?
View 3 Replies
Jan 18, 2011
I'm having some trouble getting this to work. basically I got the modalpopup to show, and when it's shown i have 2 buttons (Yes and Cancel). When yes is clicked i want a function to be called. Here is my asp.net code:
----------------------------------------------------------------------------------------------------------------------
<asp:Button ID="btnMpeDummy" runat="server" Text="Test" style="display:none" />
<ajaxtk:ConfirmButtonExtender ID="cbeDelScn" runat="server" TargetControlID="btnMpeDummy" DisplayModalPopupID="mpeDelScn" />
<ajaxtk:ModalPopupExtender ID="mpeDelScn" runat="server" TargetControlID="btnMpeDummy" PopupControlID="pnlDelScn" OkControlID="btnDelScnYes" CancelControlID="btnDelScnCancel" BackgroundCssClass="modalBackground" />
<asp:Panel ID="pnlDelScn" runat="server" CssClass="modalDialog" style="display:none; width:300px;">
<asp:UpdatePanel ID="upnl3" runat="server" ><ContentTemplate >
<asp:Label ID="lblDelScn" runat="server" Text="Delete Iteration" />
</ContentTemplate></asp:UpdatePanel><br /><br />
<asp:Button ID="btnDelScnYes" runat="server"
Text="Yes"
ToolTip="Yes"/>
<asp:Button ID="btnDelScnCancel" runat="server"
Text="No"
ToolTip="No" />
</asp:Panel>
----------------------------------------------------------------------------------------------------------------------
And here is my VB code:
Protected Sub btnDelScnYes_Click(ByVal sender As Object, ByVal e As UI.UIIterationList.IterationListEventArgs) Handles btnDelScnYes.Click
Dim scn As dat.Iteration = New dat.Iteration(e.iterationID, SessUserID)
scn.DeleteIteration()
Response.Redirect("Calibration.aspx")
End Sub
Not sure if this is useful, but just some info: My page have a list of iterations. there are several columns to this table. when the last column is clicked, the modal popup shows and asks the user if to confirm if he/she wants to delete this iteration which is this code:
Dim scn As dat.Iteration = New dat.Iteration(e.iterationID, SessUserID)
scn.DeleteIteration()
so i'm trying to get the funtion to be called, but it's not working. when you click "OK" nothing happens. when i debug it and trace the logic it doesn't even go into the above VB subroutine.
View 1 Replies
Sep 22, 2010
I have an Ajax function called from JQuery that goes to a webservice to return a value. I need a SIMPLE example on how I can do this. I've been going nuts with serializing and every other aspect of this topic. I need to return either an ArrayList with ONE string field or a DataTable of some kind. Either way, I'm populating it into a DropDownList. I'm willing to consider alternatives to this idea. (Background info - I get a value from a textbox and I need to run it through a DB to get an associated value or set of values). I'm being really general so that someone can show a simple example.
View 15 Replies
Mar 17, 2011
I set the Session["PhotoId"] in a normal aspx. But I can't retrieve value in the webmethod of the aspx page.
[WebMethod(EnableSession=true)]
public static string Submit(string data1, ...)
{
string test = HttpContext.Current.Session["PhotoId"]; // test is null
}
What should I do?
View 2 Replies
Feb 3, 2010
I am writing my first AJAX enabled page. Basically I am trying to expand out the lines of a Purchase Order (PO) using our company database. What I want to do is have a button that will that will call on a javascript to update a div field with a table for the PO lines of that PO and at the same time change the function that is called by the button to a function that will collapse the list. How would i do this?
I have tried the line in javascript:
document.getElementById('Button ID').onclick=CollapsePOLines(POID)
However it doesnt seem to change the onclick event for that button, it doesnt throw an error though.
View 2 Replies
Aug 4, 2010
I am supposed to create a intranet web application and the question is what technology I will use? is that the ASPX with C # or the Java EE. in any case I want to know the great advantages that I will receive.
View 4 Replies
Nov 27, 2010
My Problem is that i am returning a json string from a webmethod from an aspx page.
I want to create a dynamic html table using that json string but found no solution for that.
Can anyone Provide me the solution to generate html table from json string ?
View 6 Replies
Dec 4, 2014
I am trying to call a web service function within my own ASP.net (code behind) using AJAX on the page.
Once i push the button to execute the JS/AJAX/codebehind - I got an error.
POST http://************/admin/Admin.aspx/getDBInformation 500 (Internal Server Error)
This is my code below that I am currently using:
Code:
<WebMethod> _
Public Shared Function getDBInformation() As String
loadDBData()
Return JsonConvert.SerializeObject(dbInfo, System.Xml.Formatting.Indented)
End Function
End Class
The code behind looks like this:
Code:
Imports System.DirectoryServices
Imports System.Security.Principal
Imports System.Net
Imports System.Drawing
Imports System.IO
Imports System.Data.SqlClient
Imports System.Web.Services
Imports Newtonsoft.Json
[Code] ......
How can I correct this issue so that I am able to call **loadDBData()** without that 500 error?
View 2 Replies
May 12, 2010
I have developed a web application which contains aspdotnet treeview control. In this treeview control has binded with some database value.. that controls has one parent node and more than one child nodes for each parent node.
my problem is here, when the user clicks the parent node, I need to fire a javascript onclick function before the server side event(SelectedNodeChanged) called..
If I provide javascript to the parnet node when it is binding, then I could not fire the server side event(SelectedNodeChanged).
How to provide onclick javascript event for parent node in treeview control even the parent node has SelectedNodeChanged event.
View 6 Replies
Feb 26, 2011
For example, I have master page MyMasterPage.aspx and content page MyDefault.aspx. I have many UpdatePanels at MyMaterPage.aspx, and also I have many UpdatePanels at MyDefault.aspx.
[code]....
I want JavaScript functionClickMenu(this) at input button [id="ButtonMaster1" @ MyMasterPage.aspx] pass its value ["Menu-1"] into text box [id="TextBoxDefault1" @ MyDefault.aspx], and then performing update / doing post-back to server ONLY FOR UpdatePanelDefault1.
I am looking forward an example code for JavaScript functionClickMenu(this).
View 4 Replies
Jul 3, 2012
I check using web service that we can invoke. So, I use web method at code behind like below
[WebMethod]public static string ReceiveWebService(string type_list, string type_accom){
return string.Format("Thank you ,{0} number of rows inserted!", rowsInserted);}
And check user session at load like below
if (Session["user"] == "Abhijit"){}else{Response.Redirect("Login.aspx");}
Is this process secure?
View 1 Replies
Nov 11, 2010
I use this test code and it works well :
JQuery
$(document).ready(function () {
$("#Result").click(function () {
$.ajax({
type: "POST",
url: "test-JQuery-Page-Methods.aspx/GetInfo",
data: {},
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
$("#Label1").text(msg.d);
}
});
});
});
.VB
<WebMethod()> Public Shared Function GetInfo() As String
Return "test"
End Function
Now i try to pass an argument to the function but something is wrong in my code and i dont know what is wrong... :
JQuery
$(document).ready(function () {
$("#Result").click(function () {
var textj = 'test';
var jsonText = JSON.stringify(textj);
$.ajax({
type: "POST",
url: "test-JQuery-Page-Methods.aspx/GetInfo",
data: jsonText,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
$("#Label1").text(msg.d);
}
});
});
});
.VB
<WebMethod()> Public Shared Function GetInfo(ByVal infostring As String) As String
Return infostring
End Function
View 5 Replies
Jun 23, 2010
Is there a way to call code behind function with Javascript that is in another aspx page's code behind?
View 1 Replies
Nov 25, 2010
Can a required field validator be called from the code behind page?We have several check boxes and some of them require the user to enter a date, but not all of them.(This is not a checkbox list, but individual checkboxes).Any 1 of 6 different checkboxes selected makes a txtBox visible for users to enter a date.If they don't select one of these checkBoxes which require a date - it doesn't matter, the form will still be valid.I don't think validation groups can work here so looking towards doing through .vbHere's the existing code:
Public
Sub chkBoxI_CheckedChanged(ByVal sender
As
[code]...
View 3 Replies
Nov 24, 2010
I have register.aspx at root level folder and updateprofile.aspx in folder /secure/user/ .
pagemethods are working good at root level folder aspx pages only.
pagemethod calling webmethod in updateprofile.aspx is not working. Getting "undefined" exception.
Why is this so?
View 3 Replies
Mar 1, 2010
I'm passing a value from a JQuery to the serverside & now i have to update with the database by looping through all the datalist items...
JQuery:
PageMethods.addRoomAndBed(empname,Number(roomId));
C#:
[WebMethod]
public static string addRoomAndBed(string name, int dutyid)
{
// MANIPULATE DATALIST AND UPDATE DATABASE HERE
return null ;
}
View 7 Replies
Dec 10, 2010
my page Evaluation.aspx has this code
[Code]....
and I am calling the webmethod by javascript like this
[Code]....
The result is, I get the error function running and I get "undefined error" alert.Am I calling the procedure correctly? I put a breakpoint on the webmethod and it.
View 1 Replies
Jan 30, 2010
I've a problem: I've a GridView, with a folder structure, and an asp.net checkbox for each row in the gridview.Now, when the user clicks the delete button, it should delete all the folder entities where the user checked the checkbox.The problem is, there may not be a postback...So I used to use findcontrol in an ordinary asp.net button codebehind, but in a webmethod, it's impossible to access the page object, because WebMethods need to be static...Now I tried ctype(httprequest.current.request.handler,page) but that doesn't seem to work...
How can I get the page object to use findcontrol ?
View 2 Replies