ASP.NET Web Forms is a part of the ASP.NET web application framework. It is one of several programming models one can use to create ASP.NET web applications.

learn more… | top users | synonyms

0
votes
1answer
14 views

How does mobile switching work in a vs.net 2012 ASP.NET Web Forms Site project

I'm in the early stages of investigating how to support a mobile set of pages in an ASP.NET Web Forms Site project. In previous projects using MVC and Razor we would simply have a .mobile.cshtml ...
0
votes
0answers
16 views
+50

Repeater.Items only populates in Button click event when I DataBind in that event, but all textbox inputs are empty

I have a repeater that is databound to a SqlDataSource <asp:Repeater runat="server" ID="Repeater" DataSourceID="SqlDataSource"> <ItemTemplate> <asp:HiddenField ...
-2
votes
0answers
17 views

asp.net action windoq in Web Forms

I am making an application using ASP.NET and want to implement a button on click of which an action box opens with some small form, user fills it, submits and the control goes back to the previous ...
0
votes
0answers
23 views

ASP.NET-Webforms user-reported SQL timeouts after publishing

When we publish a new version of the website, sometimes, one or two users (out of a few thousand) that are connected report an inability to connect and even to re-login, with an ...
0
votes
0answers
22 views

Different HTML code in IE10 on .NET 2.0 based web-app

Our customer has a web-farm that serves .NET 2.0 and ASP.NET web-forms based website. We are using IIS 7.5. The problem is site appearance in IE10. When you log in the web-site via IE10 with ...
1
vote
0answers
40 views

ASP.Net breadcrumb style URL Routing using webforms

I am working on a ASP.Net website using web-form & C#. I have used URL Routing to convert my basic url to SEO Freindly URL for example Basic URL ...
1
vote
1answer
32 views

Preventing XSS in ASP.Net Webforms: why is Validate Request not enough?

I'm looking for ways to protect our website from XSS attacks. At this point I am concerned about sanitizing/protecting the input only. I am aware of the need to encode the output, but that's out of ...
0
votes
3answers
37 views

Hyperlink in GridView with one column

I have one column in my Gridview which has a TemplateField with URL in it. Now my question is in the Text="Details" instead of Details I want the P_D_Name in it. This is my code: <asp:GridView ...
0
votes
3answers
35 views

Simple way to display an object (POCO) in an ASPX file

First of all, let me start by saying that I'm not an ASP.NET developer. I have web experience with other technologies but have only read about webforms. I generally know what they do but have no ...
0
votes
0answers
33 views

postbacks from inside not firing

I have a bit of ASP code that I'm trying to show/hide via Magnific Popup, by passing it a div from the page as a source. <a href="#import-popup" ToolTip="Import New Proposal" ...
0
votes
0answers
23 views

How to add value in local resource in asp.net for localization?

I am working on an ASP.NET project where I need multi-language support. I need to add some resources to a resource file directly in source code. So I am using the visual localizer plugin in VS 2010. ...
1
vote
2answers
18 views

Populate form with values then saved modified values with C# using asp.net webforms

My .NET skills aren't great, but I'm stumped by a little issue and I can't find anything that explains this in a way I understand. Basically I'm trying to pre-populate a form with current values from ...
0
votes
1answer
29 views

Wrong ClientID for dynamically added child control

I am trying to rework asp.net usercontrol with .ascx markup to WebControl(only .cs). In my_new_webcontrol.cs I have: private readonly DropDownList _source = new DropDownList(); protected override ...
1
vote
1answer
34 views

$ajax webservice failing on webfarm scenario

I am working on asp.net web form project. In particular scenario I want to set some session values when user check/uncheck checkboxes in javascript. In JavaScript session is not accessible so I ...
0
votes
0answers
50 views

Update Panel not working properly causing full postback

I have moved to visual studio 4.5 and at first my update panels worked just fine but one day they just seemed to stop altogether even if I start a new project. Code Behind: public partial class ...
0
votes
2answers
33 views

asp.net FormView Data Binding with a Collection of Data

I have a collection of records, each record has an ID and a description. Now in my formview I have 8 textboxes and I want each text box to hold description of each record. So if I do this ...
-3
votes
2answers
40 views

Return Brief description

I have a simple search and i want to return a very brief part of the description. I want to grab the first 200 characters of i.Description. What is the best way of doing this? ( ...
0
votes
1answer
27 views

ASP.NET Webforms - JQGrid Populate Data with ObjectDataSource (Object in Object)

Here's my try about JQGrid : <JQ:JQGridColumn DataField="ID" PrimaryKey="true" DataType="int" HeaderText="NO" ...
2
votes
2answers
68 views

How to send Form Data from Controller

I am working on this project, where my Application need to connect to a third party application. My steps Create form to submit data. Get Form data in MY controller Action. Save mine required ...
2
votes
0answers
30 views

Where can I clear non-razor view engines in a Web Pages site?

It is recommended when using the Razor View Engine to unload any others (such as Web forms) in Global.asax like so: ViewEngines.Engines.Clear(); ViewEngines.Engines.Add(new RazorViewEngine()); But ...
0
votes
2answers
49 views

Redirect to an .aspx page that is in another project from a MVC project

I have two projects in my solution. One is a MVC 4 Project and the other one is a Web Form application. I have a Report.aspx page in the Web Form application. The question is: Can I redirect to ...
0
votes
1answer
48 views

DISQUS comments in asp.net webforms

Hi i want to use DISQUS comments system. But i couldnt find any resource for C# asp.net webforms, examples , source code or implement. I have found a project in codeplex and CodeProject but it seems ...
0
votes
2answers
43 views

asp.net web forms bind only <%# %>

Is here any way of binding <%# Page.ClientID %> without binding Page child controls? For example: <%# SomePageProprtyThatReturnsString %> <someTag:SomeControl ID="SomeControlID" ...
-3
votes
1answer
58 views

what the difference between ASP.NET, ASP webforms and ASP MVC? [closed]

I wish to produce a contact form on a website and was looking to use C# and ASP.NET. What version of ASP.NET should I use. I do not know the difference between them all. I have already created the ...
1
vote
1answer
22 views

Show RadListBoxItem Without Template

I have the following Telerik RadListBox, with a template. <tel:RadListBox ID="ToList" runat="server" DataValueField="Key" EmptyMessage="No Items" style="width:300px;"> <ItemTemplate> ...
0
votes
0answers
19 views

ASP.net security exception SvgDocument

I am trying to use the module SVG rendering on GoDaddy hosting account. I cannot seem to get around the security exception that is generated. Appreciate any help. Note that I am using webforms with ...
1
vote
1answer
36 views

Change one DataObject field's value before insert using ObjectDataSouce

I have RadGrid bind with ObjectDataSource and the ObjectDataSource is using my repository for CRUD operations, the issues are: I want to change the format of the dates before insert them. I want to ...
2
votes
0answers
58 views

How can I configure site Authorization for an MVC site with Web Forms components?

I have an MVC site where I need to use the ReportViewer control to integrate with SSRS. This means I need to have a Web Forms page within the site specifically for dealing with reports. Thankfully ...
0
votes
0answers
20 views

Asp.net Routing with structured freindly url

I am using ASP.Net web form Routing for my website but i want to make it more structure & hide all the Querystring ID's with proper Structure like Language/PageName/Issue/Category/Title Since i ...
0
votes
1answer
97 views

Using RegularExpressionValidator for numbers only in textbox

Visual Studio 2012, Asp.net, webforms. Trying to control input into textbox, numbers only. I have the following code: <asp:RegularExpressionValidator id="RegularExpressionValidator1" ...
0
votes
1answer
36 views

Integrating a WebForm into an MVC application ASP.NET

My question has 2 parts: 1 My MVC project has folder structure like so: I want to create a link in the 'Create' page that links to the 'Savings' WebForm I've tried adding this to the ...
1
vote
0answers
43 views

Visual Studio 2010: create your own layout for listview - [Render Template]

Ok i need write less code. How i can create my own Layout in the ListView configuration wizard? I want add my custom Layout in "Select a Layout" box. It's possibile? How i can? Thanks
0
votes
1answer
24 views

Render Dynamic MetaTags in ASP.NET Page in Separate Lines

When i add meta tags dynamically they render in one line. How can i break them in separate line I tried following code but this is not working for me Page.Title = ...
0
votes
1answer
24 views

ASP.Net Forbidden URL with Internet Explorer

I have an issue here which has me baffled. Another developer and myself developed an ASP.Net Web Forms application four years ago and the site has been live since. About 6 months ago we moved the ...
1
vote
1answer
73 views

Changes Required when moving a jqGrid from ASP.NET MVC to a WebForms project

I have a JQGrid treegrid that I need to move from a ASP.NET MVC project to a WebForms project. I've decided to use a webservice in the project to return the data for the grid as I don't have much ...
0
votes
0answers
71 views

How to fix my ASP.NET Webforms structure?

I have a problem with the structure of an old asp.net webform page. Now i want to convert this into an MVC page, because i think there a several things which does MVC automatically... Here are the ...
1
vote
1answer
90 views

Why Doesn't Asp.Net Session.Clear() Work On Close Tab When I See It Run?

I have been attempting to get a clean break from a session when a tab is closed for a workplace system used by supervisors and others. I am successful when the person logs out - all is cleared. ...
0
votes
0answers
35 views

Trace what is crashing chrome

we are finalizing a new version of our product (asp.net4 webforms) which is more javascript intensive than past versions. In some circumstances on first load of a page it crashes the tab and you ...
2
votes
1answer
60 views

Is MVC built on top of web forms?

I am reading a book (ultra-fast asp.net 4.5), it says "although asp.net mvc has grown substainitially since it's introduction, Microsoft originally build it on top of web forms". What is this really ...
3
votes
2answers
112 views

ASP.NET MVC Should I bother learning webforms first? [closed]

I'm about to foray into ASP.NET Web Development and I already know some of the very basics using Visual Web Developer and some of the implementations of Web Forms. However, instead of continuing to go ...
0
votes
1answer
52 views

Why form in a form doesn't work in internet explorer

I add a form from code behind to asp:PlaceHolder control. When I add form to placeholder <form> tags are missing. Asp.net removes it from some reason. But I have found workaround for this. I ...
0
votes
0answers
19 views

Formview returns 0 DataItemCount on OnSelected event even when data is loaded

I have a formview that represents data coming from a DataSourceObject. The formview data is loaded through the SelectMethod. After this I however want to check whether the DataSourceObject returns ...
1
vote
0answers
91 views

ASP.NET page inheritance: Controls from base class are not initialized

I am using a base page and an inherited page. The base page is working fine. In the inherited page I have the following @Page-directive: <%@ Page Title="" Language="C#" AutoEventWireup="True" ...
0
votes
0answers
45 views

How to pass array of custom objects to ASMX webservice?

I am trying to pass an array of custom objects from my asp.net code behind to a webservice method. The webservice is ASMX and I can't change that for now. I can verify up to the point of the code ...
0
votes
0answers
24 views

Conditional redirect based on referring url MVC and WebForm Mix

I am coding a project that uses a mix of MVC and WebForms. The webform pages are rendering a partial mvc page from two separate locations Page A and Page B. The custom back button would always send ...
0
votes
0answers
30 views

Need help saving a collection of records to database using ado.net

Quick description of my app. It is a 3 tier enterprise app. It uses Asp.Net 4.0 with C#. It talks with a basic(i.e. asmx) webservice created in the same .Net solution and calls stored procedures to ...
0
votes
2answers
220 views

Accept and download stream content from ASP.NET Web API using HTTPClient

I have an ASP.NET Web API action which creates a file and returns a stream content: public HttpResponseMessage Get(string filePath) { // create file var file = ...
0
votes
1answer
74 views

Image saving into database from a folder and get back into the UI

I have a field in my app (c#) to save an image into the database. I written the following code to save the image into a folder and then save the path into the database. But the image is not getting ...
0
votes
0answers
62 views

Delete gridview row when datasource is the result from a join statement

Since the datasource in question is the result of a join statement I have to specify the delete command. I tried to do the following but it's not working. <asp:ObjectDataSource ...
0
votes
0answers
29 views

Insertion to database from text box

I am trying to insert data from text box to my database. I am using MS SQL and VS 2012. I do not have any errors but unfortunately it just doesnt insert the data. Why is this not happening? here is my ...

1 2 3 4 5 27