ASP.NET is a web application framework developed by Microsoft to allow programmers to build dynamic web sites and web applications.

learn more… | top users | synonyms (4) | asp.net jobs

0
votes
0answers
13 views

jqBarGraph stacked bar graph asp.net c#

I need this type json object for generate jqBarGraph stacked bar graph arrayOfDataMulti = new Array( [[14,44,26],'2007'], [[18,38,38],'2008'], [[24,32,57],'2009'] ); How can i ...
2
votes
1answer
20 views

how to center full length div horizontally in bootstrap without using ul li or navbar

I want to design two menu bar on same page first gray and second blue Now I have developed the blue toolbar which is working fine with following code below but now the problem is, i cannot use this ...
0
votes
0answers
25 views

MemoryCache.Default in MVC Disposing Workaround

I am having a hard-time implementing the workaround to the problem with disposing Cache mentioned in this thread MemoryCache Disposed in Web application. My latest attempt has the following code to ...
3
votes
1answer
68 views

Is there such a thing as an entirely empty website project?

I'm looking at working my long-standing API to run on IIS rather than in a desktop app as it is now. Everything on the API is working so I'd rather not change too much if I don't have to. I know about ...
0
votes
0answers
11 views

Radgrid Does not work on iPad/iPhone

I have an issue with radgrid of telerik control in our application. When I try to open radgrid's records to view their full detail (In Edit Mode) I am unable to tap on any rows, it's the same on ...
0
votes
1answer
25 views

Ajax calender not working in IE

I am using AJAX calender with the readonly textbox control to select the date. When I click on any date in calender it picks the date and attach it to txtFromDate. It is working correctly in FF and ...
2
votes
1answer
48 views

How to filter DbContext in a multi-tenant application using Entity Framework with MVC4

I am developing a multi-tenant web application using MVC4 and EF5. I previously asked this question regarding filtering my DbContext: Is it bad practice to filter by ID within the repository pattern. ...
1
vote
1answer
29 views

Concurrent requests in ASP.Net development server

How many Concurrent requests are allowed in asp.net development server? I am using asp.net 4.0
0
votes
1answer
37 views

After selecting an item in Gridview it always returns to the top of the gridview

I've got GridView control. code is given below. It allows row selection. The problem is, when I scroll down this GridView and select some of the bottom rows the selection occurs, but whole GridView is ...
0
votes
1answer
20 views

How can I develop an ASP.NET web application using Hadoop as Database?

I want to develop an ASP.NET web application that uses Hadoop DFS as database. I have already installed and configured the Hadoop on a Windows Server 2008 R2 in my intranet. Now, I want to use it as a ...
0
votes
1answer
24 views

jquery and asp.net wont cooperate

I'm just trying to get jqery to work on my page, but it's not going so well. I've tried ALOT of different solutions I've found online, but so far the only one that has worked is in code-behind. And ...
0
votes
0answers
22 views

How to get dlls out of web reference

In my visual studio I am adding a web reference but now I want to get dll of web reference class, for example my web reference is called myWebServiceClass. If i build my project out I get is ...
-3
votes
0answers
10 views

Telerik RadGrid Export to CSV with appending top rows.

I am using ASP.NET C# with telerik controls. I have a RadGrid in a form, to which I am exporting to CSV file, Working OK. By exporting I am getting Data in tabular format as shown in RadGrid ...
0
votes
1answer
12 views

Getting RowIndex of the footer

I have code like below. My problem is that I am unable to ger rowindex of the footer. Using the code I got rowindex of the footer = -1. I tried to find sollution in the web but I didn't find anything. ...
0
votes
0answers
17 views

Can't add Autocomple to textbox in asp.net with Ajax toolkit

I am trying to make an Textbox Autocomplete with Ajax ToolKit. I downloaded and installed Ajax toolkit, and I did all what this tutorial said: Creating a Simple Auto-Complete TextBox But when I want ...
0
votes
2answers
21 views

Selecting a row in gridview then passing the selected row to another page

I am writing a web application in ASP.NET using C# with SQL Server. Basically I want to be able to select a specific row in a GridView and pass the primary key from that row to another page which ...
0
votes
1answer
19 views

XML to asp.net Input Form

I need to store records of different types in a generic record table. I want to store an xml string in a column of each record. This xml string should be converted into a question form based on what ...
0
votes
0answers
8 views

Determining the runtime config file locations that are used to configure ASP.Net

I'm experiencing a runtime exception in ASP.Net that suggests duplicate HttpModules are being configured in the Web.config file. Removing the offending modules from the relevant section solves the ...
0
votes
0answers
12 views

Is there a way to display in crystal report, the number of times a particular text appears in a particular column in database

i want to produce a report using crystal report to be in this form. The columns "From A, From B, From C and From D" are values in a database Table Column called "Case" and the figures under them are ...
1
vote
1answer
26 views

How implement generic repository against mongodb?

I am new to mongodb and I am working on mvc4 web application for a new project. I want to use repository pattern that will talk to a mongodb context for database level communications. Simple ...
0
votes
0answers
6 views

Session InUri when debugging WebApplication in Visual Studio 2010

When I debug my WebApplication ,The url shows up like http://localhost:2496/(S(lzycd0q25vtpggub0mkgaq2c))/WebForm1.aspx I can't find any settings to disable this Session InUri from VisualStudio and ...
0
votes
0answers
10 views

Which are the file formats supported in radimage editor?

My issue: I am using telrick image editor in my aspx web page.Now am not able to Load .tiff/.tif images in my editor.so i can't edit the same. I haven't see the doc for the supported file formats by ...
-1
votes
0answers
15 views

Adding gridview to the footer [closed]

I looked into web and was unable to find how to insert nested gridview in footer of the parent gridview? Any ideas how it can be done?
0
votes
1answer
23 views

VB.Net - Properties in HTML attributes

I'm attempting to insert a base url property into some attributes for a .Net master page that I'm building. The purpose of this attribute insertion is to make sure that I need only change a single ...
0
votes
0answers
8 views

How to Disable the ASP.NET v4.0 Extensionless URL feature on Windows Azure

i've a website on azure with Framework 4.5. I specified a defaultdocument that is also the destinationpage of the login page, in fact when i request the url http://xx.azurewebsites.net it redirects on ...
0
votes
0answers
26 views

How to display MS-Access OLE Object in Gridview?

I am looking to display my MS-Access Database OLE Object in a Gridview using ASP.Net. Here's what I have up to now: <%@ WebHandler Language="VB" Class="Handler3" %> Imports System ...
0
votes
2answers
35 views

web application on server won't show errors (only internal server error)

I'm trying to deploy a web application in our college server, but all I get when running the page is "500-Internal server error" (There is a problem with the resource you are looking for, and it ...
0
votes
0answers
27 views

System.Security exception on asp.net webpage - c#

I am having an issue where when I run my asp.net website, I get a security exception to do with the trust level in the config file. I have tried adding the following code into the config file in the ...
0
votes
1answer
14 views

ERROR:-528 MEssage: [Informix .NET provider][Informix]Maximum output rowsize (32767) exceeded

I face the following exception when i try to get data from table with the following structure: ERROR:-528 MEssage: [Informix .NET provider][Informix]Maximum output rowsize (32767) exceeded. ...
0
votes
1answer
17 views

SessionID generating muliple times for single request in asp.net?

Generally in asp.net we have unique sessionID for one request, Example : Once you browse any website, during this entire browsing activity from one browser is considered as one Session, and it ...
0
votes
2answers
30 views

textbox and dropdown values inserted should store in database using c# asp.net

I got a tab container which has 4 tabs in it. In one of the tab named ADD TASK I got few fields like (Task Name: --txtbox Client Name:--drpdwn Begin Date:--txtbox wid calendar Due Date:--txtbox wid ...
0
votes
0answers
23 views

IIS 7.5, ASP.NET MVC. HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfil

I have a MVC3 web site, which works well on IIS Express, but after publishing to IIS 7.5 I got that weird error. The full error message is: HTTP Error 500 (Internal Server Error): An unexpected ...
0
votes
0answers
16 views

Gridview in update panel causing page 'stutter' after utilizing [Edit] and [Update] feature, but not [Delete] or .Databind(). How do I fix this?

[Utilizing Visual Studio, ASP.NET, C#, and IE8] I have a pretty standard gridview inside an update panel. Scriptmanager on MasterPage. UpdatePanel is set to UpdateMode: Always. However, I have it ...
0
votes
2answers
17 views

how to access the intranet through internet [closed]

I have developed web application for intranet , I have developed on asp.net 4.0 and IIS server 6.0 , database is on sql server 2008. it is working fine in intranet , but there is one urgency that we ...
0
votes
0answers
30 views

HTTPException was unhandled by User code

I have written below code in .aspx.cs file. protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { if (Convert.ToString(Session["IsRedirect"]).ToLower() != ...
1
vote
1answer
24 views

How to check if the form opened has a parent form

I am using thickbox to display the list of data, but when the session timeout occurs, and user try to open the thickbox by clicking a link, the thickbox gets open and the login page starts loading in ...
0
votes
2answers
14 views

Inserting default-listitem into dropdown before executing stored procedure

I'm trying to insert a listitem in the first row of a dropdown menu and then execute a storedprocedure. I've tried using insert(), additem() and more without any luck. Appreciate your help!
0
votes
0answers
11 views

How to get return value (value type is Ext.Net.Panel) from DirectMethod in javascript and add it to a Ext.Net.TabPanel?

Ext.net v2.2 .Net Framework v4.5 My Direct Method [DirectMethod] public static Panel AddTab(int postId) { var pnlEditPost = new Panel { ID = ...
-5
votes
1answer
33 views

How to load user controls in div using javascript? [closed]

I have a div in my user control. In the user control, i have 4 html radiobuttons and on each radiobutton selection, i need to load another user control in that div using javascript/jQuery(i.e, from ...
1
vote
3answers
64 views

How to clean dictionary by deleting old elements from it

Given is Dictionary<T, U> in asp.net application. Application is running for a long time and new elements will be continuously added to the dictionary. My goal is to keep so many elements in ...
1
vote
2answers
28 views

Dynamic binding Gridview not update using Update panel

I am using GridView to show data in asp.net application and data are dynamically bind in cs side code. <asp:UpdatePanel ID="UpdatePanel2" UpdateMode="Conditional" runat="server"> ...
0
votes
1answer
12 views

how to perform summation based on condition in datatable

I have a datatable with 5 line items in which two 2 line items have same material code. Based on material code i have to sum quantity,tax etc., of that two line items and display it as single line ...
1
vote
2answers
26 views

ASP.Net web service - any way to disable the “Test/invoke” section?

I want to remove the "Test... Invoke" section from the top of my web service pages (partly because the word 'test' may make users mistakenly think they are not executing something in production when ...
0
votes
0answers
26 views

Twitter API update to v1.1 with c# – Working c# instructions

Just thought I'd share how I updated my code to work with version 1.1 of twitters API. * Sorry I can only post 2 links :( We wrote a custom ASP.NET control in c# with twitterizer 2 years ago that ...
0
votes
2answers
23 views

ASP.NET MVC 4 application database connection issue after session timeout

I have an MVC 4 website using .NET framework 4.5 that works fine at first. It allows me to login and go about my business adding, deleteing and editing records. As such, it is obviously initially ...
0
votes
2answers
17 views

Download multiple pdf documents using itextsharp

i have a tree view in which there are certain set of document list and another grid having patient details. what i need to do is when we select docs from treeview (select multiple..checkbox enabled) ...
0
votes
0answers
25 views

LinkButton display at unnecessary time

I have a LinkButton(LinkButton_x) in my aspx page. i'm using this LinkButton to check all boxes in CheckBoxList. when i clicked on this LinkButton(LinkButton_x), code in partial class is executing to ...
0
votes
0answers
18 views

Session Time-Out after 10 minutes

We've got a huge problem. We're using the Belgian eID (electronic identity card, this is a smart card). The Claim which is returned, is used by our Forms Authentication. Everything works fine, but ...
0
votes
1answer
44 views

Get the ID of the Grid

I have two ASP.NET Grid views, which contain an Image-button, which both call an Edit On-click event. the On-click event looks like: protected void Edit(object sender, EventArgs e) { ImageButton ...
0
votes
0answers
8 views

how to detect if user is authenticated using asp.net openid?

I've added ASP.NET MVC's standard OpenID authentication to my website along with regular sign-up/login functionality. However, at some point I need to know whether the user is authenticated through ...

1 2 3 4 5 3499