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
4 views

which direction does CDbl round to

i am current doing a code conversion between asp to php, in the asp code i have (CDbl(Left(.NumberStr, 9)) in php, i can do the exact same with this code ...
0
votes
0answers
6 views

SignalR and NServiceBus in a WebFarm

I am trying to understand if/how this works. Can SignalR and NServiceBus be used together to support full duplex on a web farm where the request could be sent from a server then later the response ...
0
votes
0answers
6 views

API returning many rows that are exactly the same

I have two applications: API Web Forms App I'm using Entity Framework 5 in the API. The Web Forms App makes an API call and retrieves some data. For whatever reason, when I get the data back, ...
0
votes
0answers
2 views

Setting the DefaultButton of a Panel works in visual studio but has error in IIS

I have a Panel around a wizard control. I did this so that I could set the Panel's DefaultButton based on the wizard step in the code-behind. This allows me to use the enter key to submit the ...
3
votes
2answers
91 views
+50

Asp .net session variables update by thread is not getting reflected in Session

In my page1.aspx i am generating a report from database by using thread. //on button click Hashtable ht = (Hashtable)Session["ReportParam"]; ReportThreadClass rth = new ReportThreadClass(ht); Thread ...
0
votes
1answer
11 views

Update a users profile information using simple textboxs

So I have made a log in system and now I wan't to allow the users to update their information. I thought that this code would work but it did not, here it is: public partial class Account_Update ...
0
votes
1answer
20 views

How to retrieve json data using jQuery and Json.NET?

I see this code sample in "Serializing and Deserializing Json | Serializing Collections" at http://james.newtonking.com/projects/json/help/: Product p1 = new Product { Name = "Product 1", Price = ...
0
votes
0answers
6 views

How do you check the ASP.NET sessionsState mode on a web server?

I have a ASP.NET 4.0 web application that doesn't specify the sessionState mode in any of its web.config files. This application is running on my company's web server, which I have very limited ...
0
votes
1answer
38 views

Is there any way to read System.Web.Optimization contents from code-behind?

Is there any way to read System.Web.Optimization contents from code-behind? I tried poking around the dll, but I couldn't find a way to read the bundle contents (as far as I can tell, it was meant to ...
1
vote
4answers
46 views

Find max count of a list of custom types

I have a mock application where an inheritance chain like Employee,Manager,President etc. The Employee class looks like class Employee { public int EmployeeId { get; set; } ...
0
votes
1answer
13 views

Serving virtual files in IIS

I have a page as part of my IIS 7 (ASP.NET) website which serves images from a database. It uses a querystring to select the image and sets the content type header appropriately (image/jpeg) so that, ...
0
votes
0answers
105 views

Object reference not set to an instance of an object — affects IE 10 only [duplicate]

This seems to only happen with IE or Windows 8. ERROR: __VIEWSTATE=... URL: /PreFilingBriefing.aspx QUERYSTRING: TARGETSITE: Void Page_Load(System.Object, System.EventArgs) STACKTRACE: at ...
2
votes
2answers
46 views

MVC 4 - Use a different model in partial view

Please bear with my noobness, I'm super new to the MVC pattern. What I'm trying to do I am building a profile information page for registered users on my site. This page would list data about the ...
2
votes
5answers
656 views

How do you prototype a large website?

I am working on the rewrite of a large VB6-based application. We are moving from Windows Forms to web-based deployment using ASP .Net. There are about 50 core users and all are internal to the ...
1
vote
1answer
15 views

How to pull data from a SQL Query based on data/id relationship. Using ASP.net WebMatrix

I'm using ASP.net WebMatrix I have a sql query which looks like this: var queryformdata = db.Query("SELECT * FROM document_data WHERE doc_id = @0", 1534); doc_id field_data field_name ...
0
votes
1answer
33 views

How do I get the value from a hidden column?

Here's the code I have, which works perfectly with visible columns. However, I need to be able to get the value of certain columns that are invisible: protected void ...
0
votes
1answer
17 views

Printing Using iframe from parent page using google docs

I am trying to create print option/button from PDF from google docs already in iframe from parent page on web page I that I am developing. I realize google docs/drive has the option when you click on ...
0
votes
3answers
5k views

Display an image in an Image control using FileUpload

I want show an image in an Image control as a user select an image file through the FileUpload control, but I don't want the image saved on my server.
0
votes
1answer
24 views

The Controls collection cannot be modified because the control contains code blocks (i.e. <% … %>) error

The code is supposed to work but it is giving me this error.. the disassembly says this "AjaxControlToolkit.ExtenderControlBase.OnLoad(System.EventArgs)" var timeoutID; function delayedAlert() ...
0
votes
0answers
25 views

No response from generic handler

I don't have any response from my generic handler I set breakpoints and My code did not hit inside switch (context.Request["Action"]) to get the response public class AjaxHandler : IHttpHandler ...
3
votes
1answer
42 views

Reasons not to use POST when searching via API endpoint?

I think the standard approach to RESTful searching is this: GET /users?parameter1=value1&parameter2=value2&parameter3=value3&parameter4=value4 But I want to do something like this: ...
0
votes
1answer
450 views

Url routing in server 404 error

I used to do when the routing server. I have a problem. No problem if http://myweb.com/news/22*.aspx* But If http://myweb.com/news/22 problem: 404 - File or directory not found. in local no problem , ...
0
votes
0answers
25 views

Retrieving a Row From a Database Using OleDB

So, for a project I'm trying to retrieve a value from a database and store it in a place holder upon clicking the edit button. I've tried a number of things to get this to work but it only returns ...
0
votes
1answer
29 views

Looping through rows in Dataset and replace value

I have a dataset that is being populated by a database query (which is all working fine). In the database, there is a column that contains "models". Some of these models have a "+" character in them, ...
5
votes
5answers
2k views

how to add delete confirmation prompt for command field in detail view?

I want to prompt the user for confirmation when he tries to delete a record in a detail view? I have command filed in which showDeletebutton set to true. I found how to do the confirmation for ...
1
vote
5answers
5k views

ASP.NET GridView Default Sorting Order

I have a simple gridview control bound to an sql datasource. Now I enabled sorting, but when I click on a column to be sorted, it sorts it in an Ascending Order first. When I click the same column ...
1
vote
3answers
36 views
+50

Is there any relation between compilation debug=“true” and in publis mode “release”

Do I need to set the debug='false' <compilation debug="false" targetFramework="4.0" /> Even if Publish my code in Release Mode. Edit 1 As mentioned in the MSDN Compilation Overview It is ...
0
votes
1answer
31 views

Javascript Check doesn't work

i wrote this: <%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" Inherits="Register" Codebehind="Register.aspx.cs" %> <asp:Content ID="Content1" ...
0
votes
0answers
12 views

RowExpander: Unable to display nested GridPanel in Codebehind (VB.NET)

I'm developing an ASP.NET website and I'm using a GridPanel with a RowExpander section. : <ext:RowExpander ID="RowExpander1" runat="server"> <Loader ID="Loader1" runat="server" ...
1
vote
2answers
22 views

how do I “unload” a GridView on my ASP .NET web page?

when the page starts, I cannot SEE the GridView even though it's set to "visible." I only see it after data has been loaded into it. After data has been loaded into it, how can I "unload" it? ...
1
vote
1answer
14 views

getting label to show on button click and disappear after several seconds

I can't seem to figure out why this isn't working. It is giving me this error "Microsoft JScript runtime error: Unable to get value of the property 'style': object is null or undefined" var ...
0
votes
0answers
7 views

jQuery Autocomplete widget gets ParseError when calling C# webservice

Trying to get a test bed working for jQuery UI V10 Autocomplete. I have the demo programs working, but when I adapt the code to an example using C# and an ASP.NET webservice, I am getting a status 200 ...
0
votes
0answers
3 views

Azure ccproj msbuild change _WebRoleConfiguration in build script

I have a build server that build a ccproj (azure project) <MSBuild Projects="Cloud.App\Cloud.AppNameHere.ccproj" Targets="CorePublish" Properties="Configuration=Release; ...
0
votes
3answers
27 views

Need to determine screen resolution to display necessary items on web page in ASP.NET

I have a peculiar scenario, where in I have to display extra elements on my webpage if the user is using a 24 inch monitor. I know we could determine the height and width using Javascript, but how do ...
0
votes
1answer
480 views

How do i know Cascading Drop Down is loaded

I have used Cascading Drop Downs (for Make and Model) in my web form. I am using webmethod from webservice to bind the CDDs. Following is the code - <asp:DropDownList ID="ddlMakes" ...
0
votes
1answer
39 views

Convert to Json and call page method

I have been trying to get this working for too long and thought I might ask for help here. I am trying to pass a javascript object to server side and then back to client side. Kind of like, on every ...
1
vote
2answers
21 views

Turkish character in asp.net

I faced a strange problem while coding a turkish site... In my vb.net code I use a vb function StrConv(s, VbStrConv.ProperCase) where s is the string that needs to be propercased. For the turkish site ...
-1
votes
1answer
37 views

Insert code securely into mysql database in c#(asp.net)

I am looking for a way to securely insert code into my mysql database in c#/asp.net. Open for any suggestions. I googled a fair bit but I pretty much only found php examples. Thank you
0
votes
0answers
14 views

My details view is not updating?

could you please tell me why nothing happens when I update my details view using the following code protected void newOrderDetailsView_ItemUpdating(object sender, DetailsViewUpdateEventArgs e) { ...
0
votes
3answers
69 views
+50

Semantic search .net library

I want to build a dynamic course content system based on existing materials (PDF,PPT,Word documents ...etc) My basic requirement is the semantic search in these files to extract contents . i ask ...
0
votes
2answers
27 views

Formatting within Entity Framework Where Clause

I have the following query on my db context Dim query = ( From n In db.tblNews Join nc In db.tblNewsCategories On n.CatID Equals nc.CategoryID Order By n.DateEntered Descending Select ...
-1
votes
1answer
48 views

javascript “return false” does not work

I want to control that even user fill the form correctly. So, I add the javascript control in my submit button into click event. In my form, there are many asp.net control and I also have a security ...
0
votes
2answers
18 views

choosing between a Windows service and a web app

We have an ASP.NET website where user adds items to database. There are several sites on same server, each with its own database. I need to implement a mechanism to check database for the state of ...
0
votes
1answer
19 views

How to do I send an email a target group based on stored procedure @Error message?

Please forgive me for asking too many questions. I have been working on this all day and can't take it anymore. I have a stored proc called sp_signup() The stored proc first checks to see if the ...
0
votes
1answer
79 views

tinymce into jqgrid

I work with ASP.Net MVC 4. How can I insert tinymce into jqgrid? When I add a new record I want to show the TinyMCE editor; what "wysiwyg" editor is more compatible with jqgrid? Regards Ricardo
0
votes
2answers
19 views

Dropdownlist looses value during autopostback

I have a couple of straightforward dropdownlists. The first is bound by a linqdatsource in the html with autopostback set to true. The selection of the first determines the data in the second. When I ...
-1
votes
0answers
18 views

how to download ppt in android from aspx website?

Hello i am trying to download a ppt from my .aspx website through my android(samsung galaxy s3) .but instead of ppt. my webpage is downloading as .html file. please give an option. thanks in advance
0
votes
0answers
16 views

How can I dynamically change to sort expression of a Grid View Column in c#?

What I'm trying to do is change the sort expression of a dynamic number of grid view columns in c#. My grid view is displaying all of tests a student has taken for a given class and so the number of ...
-3
votes
0answers
21 views

500 Internal Error for Visual Studio project for AJAX controls [closed]

I have developed a website on VS 2005 using c# and had it working fine with calendar control, Autoextenders and all AJAX controls. I changed the hosting company and the new Hosting company provided me ...
0
votes
3answers
50 views

how to see DB changes without refreshing page in ASP.NET C#

I have this button event: protected void AddDetails_Click(object sender, EventArgs e) { DataSetTableAdapters.SelectFriendsTableAdapter sft = new ...

1 2 3 4 5 3495