asp.net-3.5 is the 3.5 version of web development framework asp.net, part of .Net. It features: ASP.NET AJAX as a part of the runtime, new LINQ data capabilities, improved support for CSS.

learn more… | top users | synonyms

2
votes
1answer
35 views

UpdatePanel sometimes refreshing entire page

Even though I am using an update panel, sometimes my entire page is refreshed, and I can't figure out why. (Edited to take into account Jason P's answer.) Masterpage code: <form runat="server" ...
0
votes
1answer
35 views

page.Validate() method does not works perfectly

I'm working with nested grid views. I have one grid view like service section which have two another section like it's features and charges. This two grid are nested child grid of service section ...
0
votes
1answer
30 views

Child Grid View's OnRowCommand not fired in Nested Grid View criteria

i m working with nested grid view scenario. how ever i found that my Child grid view's OnRowCommand not fired inside Parent grid view. i surfing and found one solution like. After implementing this i ...
0
votes
1answer
45 views

Is it possible to fill two DropDown controls on same page using different threads?

I have multiple multi-select DropDown controls (user controls) on a page. Even though it is not a good practice to load thousands of items in a DropDown, but I can't change the existing project ...
0
votes
1answer
23 views

“Generation of designer file failed” when adding custom ExpressionBuilder tags to .ascx

I am making some changes to a user control (.ascx file) in my ASP.NET 3.5 web application project in Visual Studio 2008. I noticed that the changes I was making in the markup were not being reflected ...
0
votes
0answers
168 views

can't get textbox value from EditItemTemplate from Grid View

i have three grid view on one page. first GV_ViewServices for binding Services Details. Second is GV_ViewServiceFeature for binding Service Features Details as particular service. Third one is ...
2
votes
1answer
61 views

Using SlowCheetah Config Transforms on Web.config in a 3.5 Web Forms app

I downloaded SlowCheetah into an old .Net 3.5 web forms application in order to add transforms to web.config. I've used SlowCheetah with Windows Services and Console Applications to transform ...
0
votes
0answers
14 views

How to minify AjaxControlToolkit script that was patched

I have patched a source of the AjaxControlToolkit using this aritcle. However, I need to make sure that the new assembly works in Release mode which then reverts to non-debug version of the script ...
0
votes
0answers
23 views

Adding DOCTYPE to xmlDocument with ASP.NET

I'm trying to add the line. <!DOCTYPE itemDets PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "justBeliveMeThisIsAValidURLToA.dtd"> to an XML file that i have created in a web method using ...
0
votes
2answers
31 views

DB Date insert works sometimes

I have the following line: command.Parameters.Add("@date", SqlDbType.DateTime, 8).Value = date_of_trip; where date_of_trip is a string containing 25-9-2013 (i.e. day-month-year) This gives me an ...
-1
votes
2answers
76 views

SQL self join query to LINQ query

I am bit stuck with the converting a SQL query into LINQ.Can any body please help me out. here is my query SELECT x.* FROM FilterType x JOIN (SELECT t.FilterType FROM FilterType t ...
0
votes
1answer
82 views

Convert datatable/datarow[] column to int from string

I have a datatable with a column called "position" that is coming across as strings. I use DataTable.Select to get a list of data rows. DataRow[] drTopMenu = dtMenuItems.Select("ParentMenuID is ...
0
votes
0answers
130 views

Update drop down using ajax drop down list event in asp.net

On the aspx page I have two drop down controls: <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %> <asp:UpdatePanel ID="UpdatePanel1" ...
0
votes
1answer
49 views

Error: The state information is invalid for this page and might be corrupted

I'm seeing the error: The state information is invalid for this page and might be corrupted On my page. Based on some reading, I gather that the error can occur due to several reasons, a and can be ...
0
votes
0answers
118 views

how to use existed Sequence number in C# Code to get auto increment in combination of two fields

I have created a stored procedure as: ALTER PROCEDURE [dbo].[Budget_Details] @Budget_Type varchar(10) ,@Item_Category_Code varchar (20) ,@Item_Description varchar(500) ,@Configurations varchar(500) ...
1
vote
1answer
59 views

Is Quartz.Net appropriate to run a long process started from an ASP.Net 3.5 page?

I have a long running task (many hours) that is started via a web page on an intranet interface. This is an ASP.Net 3.5 project. Of course, I could extend the script timeout and let the page run for ...
1
vote
1answer
875 views

Retrieve image from SQL Server using ASP.NET web service

I have a SQL Server (2008 R2) with an Image table, the table has a column with type image. I insert my Image into this column using Stream fs = FileUpload1.PostedFile.InputStream; BinaryReader br = ...
0
votes
3answers
244 views

How to redirect browser during an Async Postback?

The scenario I have an ASP.NET project which uses a custom authorization/authentication method (vs. using forms/windows authentication, etc.). On each secure page load, the following code is ...
3
votes
4answers
234 views

SQL Reporting Services report only loads on second click

I have a local .rdlc report rigged to show on a button click, but for some reason the report only shows up on the 2nd button click event. I have no idea why the report doesn't show on the first ...
0
votes
1answer
28 views

Issue with selecting the selcteditem in mvc 2.0 dropdownfor element in view - Always selects first element

Using the sample explanation found on MSDN for: SelectList Class (http://msdn.microsoft.com/en-us/library/system.web.mvc.selectlist_members(v=vs.90).aspx) SelectListItem ...
1
vote
1answer
77 views

How to check negative value returning from LINQ

I am using LINQ to get my correct data,inside this LINQ am calling one method to check the date difference.If the date difference goes negative LINQ returns me anonymous type.How I can handle this and ...
0
votes
1answer
34 views

how to change “unchanged state” to “Added state” in .NET 3.5?

When I try to create an object to the "createRide" webmethod, it keeps prompting the following error. I have tried to do "objEn.State = System.Data.EntityState.Added;" but it said that the entity ...
0
votes
1answer
162 views

How do you make an ASP.Net 3.5 WebService accept AJAX PUT requests?

I am not able to get a WebService in an ASP.Net 3.5 project to accept PUT requests. Here is the AJAX call: var url = '/MyService.asmx/UpdateObject'; var options = { dataType: "json", ...
0
votes
0answers
19 views

how to show different report for single form

I have one drop-down-list. When i select value from it a form will appear, four drop-down-list value have same form and fifth one has different what i want it to create different report page for four ...
3
votes
1answer
102 views

How to Deserialize a list of custom objects

I've really hit a roadblock trying to deserialize a list of custom objects over a WCF service. It's using .NET 4. How do I get around the different namespaces. My ASP.NET app is running on 3.5 and the ...
0
votes
0answers
30 views

Redirect issue in Fromsauthentication in asp.net 3.5

I have developed a asp.net3.5 website and deployed it on hosting server.Now when i logged into this website, style sheet not working properly.I am using Formsauthentication. I put the following link ...
0
votes
2answers
475 views

File uploading by drag and drop with progress bar in asp.net

I want drag and drop area in which we need to just drag and drop file/multiple files which we want to upload from desktop and files get uploaded automatically showing progress bar as well. For ...
0
votes
1answer
107 views

SQL Server CE: Generate DB with script

I would like to use the SqlCeEngine class to build a database and populate it with tables (like this question) but using a script generated by ExportSqlCE. I was wondering if this was possible using ...
2
votes
0answers
131 views

How to deploy ASP.NET website project with MSBuild

I am trying to create a batch file to build a solution that contains mutilple projects and a ASP.NET website project. Output should be a "build" folder containing result of ASP.NET website ...
0
votes
1answer
44 views

Few files on production are not working asp.net c# 3.5

I created an ASP.NET C# site using .NET Framework 3.5. Its working fine on development server. I have two folders namely signup settings I than hosted my site to domain somee everything is working ...
0
votes
1answer
39 views

Which application pool should i select for asp.net 3.5 website

I have created an asp.net 3.5 website on my system.Now i want to host this website on my local IIS. So which pool should i select for asp.net 3.5 version as you see v3.5 not displaying in list. Please ...
0
votes
1answer
188 views

SQL CE & Dataset - Row does not exist

I'm (new to and) working with a SQL CE database that will later be connected to a project where we send and receive information to a device over a SerialPort. This database will store information ...
0
votes
0answers
60 views

What are the pros and cons of using web user controls

I am trying to make a web site builder in ASP.net web forms(using .net 3.5). We need to display different Widgets or elements based on their settings , some uses global setting and some based on their ...
-1
votes
2answers
68 views

How to make sure the user just logged in?

I have a web control panel with links to sensitive informations (like credit card number). When the user clicks (who got logged in before) on one of these link, I need to check his credntials. How ...
0
votes
0answers
240 views

Adding DLL to global assembly cache

I know there already is a lot of questions concerning this, but I couldn't find any answer that I could use for my situation. I'll begin by explaining the wetup we have. We have windows server 2003 ...
0
votes
1answer
42 views

Unable to update client webpage after receiving reply from WCF Service

I'm working on some application which is in ASP.Net 3.5 in which I've to embed a new feature called Instant Messaging/ Push Notification. For this, I've used WCF to send data to client. But the issue ...
0
votes
0answers
59 views

Dynamic JSON property names in WebForms web application possible?

I converted an old .NET 3.5 WebForms "Website" into a "Web application". Now i don't know, if that is the cause, but all the dynamic JSON property names, that were working before are now producing ...
0
votes
1answer
38 views

what could be causing lots of errors in my entity framework models' designer file?

I'm having trouble creating/updating EntityFramework models. I have a visual studio 2008 windows forms project the has been compiling and running for years. Then today, I decide to touch it in order ...
0
votes
0answers
14 views

Trouble running silverlight application on my local.

Getting following error message The XML page cannot be displayed Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
0
votes
0answers
124 views

ASP.Net 3.5 Master Page with large number of nested controls (response time problems?)

Environment: ASP.Net 3.5 I'm weighing the Pros and Cons of nesting 200+ Input Controls into the Master Page. Curious if this is brilliant or incredibly stupid. The scenario is a Real Estate type ...
0
votes
1answer
146 views

Handle HTML array input elements

I know in PHP we can easily create something like this to handle HTML array elements: <input name="test[0]" value="1" /> <input name="test[1]" value="2" /> <input name="test[2]" ...
0
votes
3answers
89 views

VS2008 - Unable to start debugging

I am getting the error when I try to debug my application, its build successfully also its not showing me any error.But once I start debugging its showing me the error and even Help button redirects ...
0
votes
1answer
441 views

Execute select query from code behind

How can i execute a SELECT query from my Code Behind file and then iterate through it? I want to do something like this (just a simple pseudo example): // SQL Server var results = ...
1
vote
2answers
130 views

Persisting data across the app through global.asax

I need to store a globally accessible list in my C#/ASP project - Storing it in the global app on the server instead of the database - as the data is only needed when the app is running. So far I ...
-1
votes
2answers
148 views

Why I am Getting this error? : Attribute 'data-role' is not a valid attribute of element 'li'

Hope you all are doing well. I am developing a Meeting Room Reservation System in Visual Studio 2008. In this I am trying to use Metro UI Drop down I have added the Css and Javascript file But I ...
0
votes
1answer
105 views

Load jQuery in a UserControl for SharePoint

I'm using Visual Studio 2008 and ASP.NET Web Forms to create a UserControl for a SharePoint (2010) site. The UserControl is loaded through SharePoint WebPart. Everything works fine so far, but i ...
0
votes
1answer
49 views

Field not found: Form1

I'm trying to use a custom made WebPart in a SharePoint site. I made a ASP.NET UserControl and i load that control in a SharePoint WebPart. I then create a Page within a SharePoint site and that is ...
0
votes
1answer
152 views

Custom data annotations with webservice in ASP.NET 3.5

I can't create a custom ValidationAttribute in asp.net 3.5 webservice. Everything seems ok, it compiles and it runs, it just doesn't enter the custom attribute i created. Msdn documentation ...
0
votes
0answers
173 views

Visual Studio 2012 hangs, when observing an Collection while debugging ASP.Net 3.5

for some time i've got a problem debugging my asp.net 3.5 Application with Visual Studio 2012. Each Time i want to observe which values are in an Collection,List or similar classes, Visual Studio ...
0
votes
0answers
38 views

Is there anything I should be aware of when using System.Web.Security.Roles.CreateRole?

I realize that it's a security library, but I just want to cover my bases. Say I want to use something like: System.Web.Security.Roles.CreateRole(newRole.Text); where newRole is an ...

1 2 3 4 5 20