C# - Does MVC 2.0 Model Binding Work With Ajax Requests
Feb 23, 2010
i'm just sending a normal POST request using Ajax.BeginForm... i output the form elements using the TextBoxFor and .HiddenFor etc... all as i should... and when it's posted via ajax to my action method, the object in the action method (named "Comment") is not populated with the values!
[code...]
View 3 Replies
ADVERTISEMENT
Jan 23, 2012
I am trying to service AJAX requests with a method in my .aspx page. For some reason I am not getting the data returned that I want.
mypage.aspx:
<%@ Page Language="VB" Title="My Page" %>
<%@ Import Namespace="System.Web.Services" %>
<%@ Import Namespace="System.Collections.Generic" %>
[Code].....
When I click mybutton I get an alert "error:" and then whole lot of HTML that says:
Unknown web method testmethod.
Parameter name: methodName
View 2 Replies
Dec 19, 2011
I'm trying to create a Grid in MVC3 with razor and VB.NET. The normal Grid works fine, sorts and paginates fine, but when trying to make the Ajax binding, I get an error 500 - internal server error when I try to go to the next page.
[Code]...
View 1 Replies
Jan 16, 2010
does it reload the entire page or does it have the intelligence to only send the necessary js to update the needed parts of the page that have changed?
if it does the latter that would be a god send, however im probably being dreamful. it probably returns the entire view without any regard, right?
edit: answer seems to be no, everything is returned.
edit added: do you think it would be difficult to write a framework where mvc compares last html it output to the current html we want to output, and instead of sending the entire html, figure out what has changed and generate js code that will do the updating as compared to previous html? (presuming nothing was manually changed on the client using js)... maybe an idea for a codeplex project? or maybe something like this exists?
View 2 Replies
Sep 4, 2009
I was following the example laid out here for implementing Ajax panels in MVC. I'm using VB.NET, but the conversion is pretty straightforward. However, I can't seem to get it to work?
Here is my code:
HomeController:
Function Index() As ActionResult
Return View()
End Function
Function Archive() As ActionResult
Threading.Thread.Sleep(5000)
Return View()
End Function
[Code] .....
When I run it, all I see is the ajax-loader animation endlessly. When I run it in debug mode, it never seems to trigger the Archive action.
View 3 Replies
May 10, 2011
i have a jQuery AJAX webmethod in ASP.Net that works perfectly fine when tested locally. but when uploaded to the server, sometimes it works sometimes it doesnt. when i debugged the code with firebug i see the the webmethod gets called but jumps right away to the error section of the ajax script.
jQuery code:
<script type="text/javascript">
$(document).ready(function () {
//get current date
[Code].....
View 1 Replies
Nov 23, 2011
Public Class Item
Public Text As String
Public Value As Integer
End Class
[code]....
Why does this not work, where itms is a List(Of Item)?
Error event triggered on the line: Me.uxDropDown.DataBind()
DataBinding: 'Project.Item' does not contain a property with the name 'Text'.
View 1 Replies
Oct 29, 2011
is there any way that i could link/bind multiple binding source to only one binding source navigator?
View 4 Replies
May 28, 2012
explain to me how listening to ARP requests in VB.net or C #?
View 2 Replies
Oct 18, 2010
binding navigators, datagrid view, binding source are all sql database parts.Will these parts still work if you havent got sql on you pc and your not using an database file (.log and .mfd) and your not coding to them, im using MS Jet/Oledb to code to Excel.What not to put on an Employee evaluation: This employee has hit rock bottom and shows signs of starting to dig.
View 2 Replies
Jul 2, 2011
Binding Master Table to TextBox and DateTimePicker and Binding Details Tables to Datagridview then Add / Update / Delete in both
View 8 Replies
Jul 30, 2009
I have a website and say a user comes along and fills out the form with bogus data. Then after he fills it out, he enters another one and another one and another one of bogus data. He's basically just trying to clog up the data base.
How is the best way to combat this? Would it make sense to when they submit the data track the IP address?
View 4 Replies
Jul 28, 2009
I'm writing a web crawler for a specific site. The application is a VB.Net Windows Forms application that is not using multiple threads - each web request is consecutive. However, after ten successful page retrievals every successive request times out. I have reviewed the similar questions already posted here on SO, and have implemented the recommended techniques into my GetPage routine, shown below:
[Code]...
View 4 Replies
Mar 14, 2011
i am creating a httpRequest handler to download files my question is which better to use aspx or ashx ?
View 3 Replies
Nov 18, 2009
I'm wanting to write a program in vb .net that could monitor outgoing print requests from any program on the PC, prompt the user if they would like to add a header to the document, and if they say yes, then tack it on (if the user has printed something in the space where the header will go, just print on top of it). Is this possible? I've looked around for ideas on how to do this, but I can't seem to find anything.
View 1 Replies
Jan 26, 2011
this is general to any operation calling an SQL server, or anything requiring an open connection at that.
Say I have anywhere from 20 to 1000 Select calls to make for each item in data being looped. For each step, I'll select from sql, store data locally in a struct, then proceed. This is not a very expensive call, so should I keep the connection open for the entire loop? Or should I open and close every step?
How expensive in run time is opening a connection? I would think it'd be better to keep the connection open, but would like to get the correct response for this.
View 4 Replies
May 22, 2011
while using HTTP web Requests, when i try and read the stream i always get an error saying 403 Forbidden but if i try to do it in the VB.Net web browser it works fine. Here is my code:
Imports System.Net
Imports System.Text
Imports System.IO
[Code]....
View 1 Replies
Nov 24, 2011
I have a server making a head request to a database dump I've created. The remote server does this to make sure that it's not using excessive bandwidth when not necessary.However, due to some other circumstances outside my control this causes the script to be hit twice: once for the head request, and then another time to download the data.
What I'd like is to have the script I've written detect the head request, send back a couple of headers (e.g. last modified is right now, filesize different than before), and exit. Is there a way to do this?
View 1 Replies
Dec 26, 2011
I have a server making a head request to a database dump I've created. The remote server does this to make sure that it's not using excessive bandwidth when not necessary.However, due to some other circumstances outside my control this causes the script to be hit twice: once for the head request, and then another time to download the data.
View 1 Replies
Nov 11, 2011
I have a web service I'm trying to interface with however no matter what I try it is refusing to send the clients credentials along with the request.The security block in my app.config looks like
<security mode="Transport">
<transport clientCredentialType="None" proxyCredentialType="None" realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
[code].....
View 1 Replies
Apr 10, 2012
I have a site developed using vb.net 2.0. It has a URL of like [URL]..I want to avoid any malicious requests using other URLs. I have tried to implement using the code below and would like to kick such requests out of the site on the page load. How can I achieve this?
If (urlParams.Contains("http") And
Not urlParams.Contains(Request.ServerVariables("HTTP_HOST").ToString)) Then
Would like to kick out of the site here.
End If
View 1 Replies
Jun 2, 2012
In VB.Net, how do I make a program to tap into the HTTP requests made by external web browsers? I don't want to edit or stop the headers, only 'read' them, i.e., access its contents. I'm speaking of something like Fiddler2, but I only want the 'reading' part. I also want to read the user-agent.
View 1 Replies
May 27, 2011
My winforms application is consuming webservices that run on an older PHP server, which is why i often get an XML parsing error from the service class when i invoke its members.
how do I get to see the faulty XML so that I may correct it on the PHP server - the thrown exception clearly states the position of the error in the XML, but it doesn't help without the XML.
View 16 Replies
Dec 29, 2009
I've been writing an application that deals with various system files as well as registry keys. For permission reasons, my application currently runs as administrator. But this isn't really necessary for my main application window, nor is it very appealing for the UAC dialog to pop up everytime my application is started. I've noticed frequently that for some programs, such as AVG, the UAC shield shows up on several buttons throughout the program, the clicking of which does bring up the UAC prompt. But the application as a whole does not demand administrator rights, these rights are only requested as needed. How to isolate security upgrade requests to certain controls and/or methods.
View 2 Replies
Jun 1, 2009
I've got a web app that sends a request to a WCF service. The WCF service gets a LINQ resultset (anon. ilist) and sends that in reply, back to the web app.In order to get it working quickly, inside the WCF app, i'm using copytodatatable and sending it to my web app in a DataSet.
My web app then takes the DataSet and writes it to xml, some xslt is performed and the resulting data is shown on screen. Perfect.
I'm still (relatively) new to WCF. I understand that sending DataTables/DataSets is a bit cumbersome. The web app wants the data in xml format (for the xslt operation), so I figured I'd get the WCF web service to do the DataTable -> xml work for me, and simply reply with a nice XmlDocument to the client webapp.However a XmlDocument cannot be serialized.
What's the best way of sending the XML data down to the client over wcf?
View 4 Replies
Sep 15, 2011
i am working on a auto click program and it is working well apart from it goes slow because im using a web browser to visit the websites.
I heard i can use http request to vist websites ?
Im just using
WebBrowser1.Navigate(url)
Is there anyway i can edit that so it does a http request to (url) rather than get the web browser to go there ?
View 1 Replies
Nov 28, 2009
i did this much but something doesn't seem right...the question is A Visual Basic program that requests a positive integer as input, and carries out the following steps:If the number is even, divide it by 2.Otherwise, multiply the number by 3, and add 1 to the result. Repeat this process with the resulting number, and continue repeating until the number 1 is reached.After the number 1 is reached, displayed how many iterations were required to reach the number 1. (Hint: a number is even if number Mod 2 = 0.)
Private Sub btn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn.Click
Dim num, multiply, divide As Double
[Code]...
View 4 Replies
May 25, 2009
(Write a program that requests a word containing the two letters r and n as input and determines which of the two letters appears first. If the word does not contain both of the letters, the program should so advise the user.)I got the program to work but he said its wrong because we need to have it looping and if one of the letters is missing you also have to say which one is missing.I have some of the pseudo code but I don't know how to make it work.If Index of("R") = 0 or index of ("N") = 0 Find out which is missing and display message.Else Find larger and display message.
[code]...
View 1 Replies
Feb 21, 2011
I need to build a Windows Service in VB.net under Visual Studio 2003.This Windows service should read the flat file (Huge file of about a million records) from the local folder and upload it to the corresponding database table.This should be done in Rollback mode(Database transaction).While transferring data to table, the service should also be listening to additional client requests.So, if in between client requests for a cancel operation, then the service should rollback the transactions and give feedback to the client. This windows service also keeps writing continuously to two log files about the status and error records. My client is ASPX page (A website). how to organize and achieve this functionality in a windows service(Processing and listening for additional client requests simultaneously. Ex. Cancellation request).
View 2 Replies
Oct 13, 2009
I'm looking for some advice on how to optimise the following process:App reads csv file.For each line in the file an XML message is created Each XML message is posted to a URL via a HTTPWebRequest This process was designed to handle low volumes of messages (up to about 200 at a time), un suprisingly thinks have changed and it is now expected to handle up to about 3000 at a time.
The code used to post the message is here: Public Function PostXml(ByVal XML As String) As HttpStatusCode
[Code]...
I am currently restricted to sending multiple messages due to restrictions elsewhere in the system. There is a noticable delay in responding to the request at the other end (the receiver) but this is outside my control. I am trying to ensure that the process of sending is as efficient as possible (external factors notwithstanding).
View 4 Replies