I'm going to be integrating with an existing application which will have an attached file
in its initial HTTP post request to our ASP.NET application.
I've built the logic to extract the file from HttpRequest.Files and even tested it using JMeter.
What I want to do is build a standalone ASP.NET page which can direct the user to the fir...
What materials do you recommend for an experienced ASP.NET to learn ASP.NET MVC?
...
hi,
In asp.net 3.5 using vb i would like to go to another page in my application when the user clicks a button. what is the command for doing this?
Thank you
...
I am following the tutorial here: http://www.aspfree.com/c/a/XML/Applying-XSLT-to-XML-Using-ASP.NET/2/
The tutorial shows how one converts xml to html via xslt. Unfortunately, one of the first steps is to "Drag an XML control from toolbox on to the webform". Which section of tools is this and which control are they talking about?
...
I have an asp.net application running in a virtual directory under the default IIS web site.
After deploying this to its own website with its own IP address (on the same machine), performance degrades drastically.
My first guess may be that this is perhaps some sort of a routing issue, but I am not too sharp on the networking end of ...
Hi.
I have worked on a problem for a couple of hours now.
I want to create dynamic Javascripts which I load into the page when I need.
This is a project built on Ajax technique. First I tried to do it by PageMethods but PageMethods can only be static due to viewstate and other things. The problem was that I wasn't able to program against...
Hello! Does anyone know if JSON.net can serialize/deserialize typed datasets in asp.net? Or if not, are there any other options to do this?
I looked around but couldn't find anything in the JSON.net docs that explicitly said 'yes' to support of typed datasets.
Thanks!
Eric
...
hi,
I would like the data that i enter in a text box on pageA to be accessable on pageB
eg: User enters their name in text box on page A
page B says Hello (info they entered in text box)
I heard this can be accomplished by using a session but i don't know how.
can someone please tell me how to setup a session and how to store data ...
When I compiled my latest asp.net program and trying to run on the test server, I am getting this error
Line 46: Dim dependencies() As String
Line 47: CType(Me,Global.System.Web.UI.Page).AppRelativeVirtualPath = "~/default.aspx"
Line 48: If (Global.ASP.default_aspx.__initialized = false) Then
Line 49:...
Hi
I've built an asp website and i have the following issues:-
i'm using a master page in it and have defined two contentplaceholders one in head one in content, and i've specified the page title in the top most directive at the @page directive but the page title doesn't show up. I have to manually add a tag for it.
Secondly when i cr...
I'm trying to figure this out, but I'm not having much luck.
Basically, I have a wizard style HTML form that's built using the jQuery form wizard plugin, which includes the jQuery.Form, jQuery.Validation and jQuery.History plugins. I'm trying to use ASP.net Web Forms to submit an email, but I can't seem to make it work at all.
here's ...
Net 2.0 / Visual Studio 2005 / ASP.Net web app
I read many posts and comments on this site but either some are too confusing to follow for me or others don't meet my requirement.
So I have a 3 tier application - UI, BLL, DAL. In my DAL, I created DataSets by draggin storedprocedures from the Server Explorer. So the connection string g...
Edit:
I think I can boil it down to: I want to use windows authentication mode, but be able to get a list of users like you would with Membership.GetAllUsers().
I'm trying to develop a solution for use on an intranet, so all the users will be authenticated. I guess I'm looking for a best of both worlds solution.
Here's the gist (I'...
I am completely new to WCF. I was pretty sure it was going to work like regular web services - and I'm also pretty sure I was doing that wrong too, but now I want to make sure I'm doing it right.
Our ASP.Net app connects to the WCF service across the internet. I have impletemented basic security and using SSL. It is working, but slower ...
I seem to be having a problem with my local machine.
When loading a page that has a Button on it, and the button has been set with the parameters from the header, on my local machine the parameters disappear, but on our development box they are still there.
This is hard to explain, so I will show with an image.
This is what the button...
If you use Server.Transfer to save the extra roundtrips caused by Response.Redirect, the SiteMapPath gets out of synch and displays the previous page information in the breadcrumb. I have spent hours trying to change the CurrentNode from code, but just can't get it to work. That particular property is read-only.
The MSDN recommendation ...
This code fails to actually save any changes:
//
// POST: /SomeType/Edit/5
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(Guid id, SomeType Model)
{
db.AttachTo(Model.GetType().Name, Model);
db.ApplyPropertyChanges(Model.EntityKey.EntitySetName, Model);
db.SaveChanges();
return RedirectToAction("Index");
}
ASP...
Hey guys,
Here's my problem:
I have do create a menu/list of actions (which would be easier if made with a control that accepts a DataSource, like listview or even Gridview with templated collumns).
Each of this actions need a specific form to be exectuted, and I've already created all these forms in separated aspx pages.
The question...
I have a gridview that is only shown in a modal popup. right before I call the modal popup I set a value in a textbox. The gridview inside the modal popup depends on that textbox's value for it's data to show up at all. SO onclick I want to reload the gridview so that it will reload with the textbox's value. Any ideas?
...
I'm playing around with a form utilizing a repeater that I've been working on, and I'm currently trying to write an event handler that will get the value of certain controls inside of a repeater after the form containing the repeater has been submitted. I assumed that something similar to this would work if I wanted to retrieve the label...