Tagged Questions

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

38
votes
7answers
24k views

How can I deserialize JSON to a simple Dictionary<string,string> in ASP.NET?

I have a simple key/value list in JSON being sent back to ASP.NET via POST. Example: { "key1": "value1", "key2": "value2"} I AM NOT TRYING TO DESERIALIZE INTO STRONGLY-TYPED .NET OBJECTS I simply ...
17
votes
4answers
12k views

How to make update panel in ASP.NET MVC

Hi Guys i make search about how to make update panel in MVC ,but , because it is new , i cannot find good samples regarding it.How can i implement this to MVC? Thanks
16
votes
3answers
12k views

ASP.NET MVC Master Pages

What's the difference between the ASP.NET Master Page, and the MVC Master Page? And the AJAX Master Page for that matter?
14
votes
5answers
2k views

jQuery success callback called with empty response when WCF method throws an Exception

I'm tearing my hair out over this one, so bear with me (it's a long post). Basic Info ASP.NET 3.5 with WCF service in ASP.NET compatibility mode Using jQuery with this service proxy for AJAX ...
14
votes
5answers
675 views

Which is a better method for storing images - folder or SQL Server as binary?

I am planning the development of a photo gallery application for a client. I am developing the app in asp.net 3.5 and would like to develop it so that I can re-use the application across multiple ...
13
votes
2answers
12k views

Forms Authentication Timeout vs Session Timeout

In my asp.net website i am using asp.net form authentication with following configuration <authentication mode="Forms"> <forms loginUrl="~/Pages/Common/Login.aspx" ...
12
votes
7answers
1k views

Resources for learning LINQ?

I'm looking to learn LINQ, but I'm finding that there is a lot more to it then what I initally expected. In fact, there's so much that I'm not sure where is the best place to start. I know that ...
11
votes
2answers
144 views

Why does my SqlCacheDependency HasChanged come back false but almost immediately after changes to true?

I cannot figure out why the HasChanged value of my SqlCacheDependency object is coming back originally from the command execution as false, but somewhere almost immediately after it comes back from ...
11
votes
3answers
7k views

Access a control inside a the LayoutTemplate of a ListView

How do I access a Control in the LayoutTemplate of a ListView control? I need to get to litControlTitle and set it's Text attribute. <asp:ListView ID="lv" runat="server"> ...
9
votes
1answer
193 views

ASP.NET gurus - small issue when setting app domain name for sharing SQL session in scale-out scenario

We have scaled-out some portions of our ASP.NET app to run on one server, and other portions to run on another server (& under a subdomain). The two servers share (SQL Server) Session. We used ...
8
votes
10answers
1k views

None of my “code behind” code is being called

I have just created an ASP.NET C# project and a virtual directory for it in IIS in (as far as I know) the normal way, but I am seeing very strange behavior that I have never seen before. It seems ...
8
votes
4answers
3k views

log4net - Appenders not working in IIS7.5

I am able to write to a log file using log4net and Cassini/IIS dev server, but when I use IIS7.5, I can't write out to a file. Initially, I got a security exception, so I added ...
8
votes
5answers
8k views

How to study for Microsoft exam 70-564: asp.net 3.5?

On the official page for the exam there is no mention of any books. Does anyone know when any will come available?
8
votes
1answer
4k views

Best free ASP.Net 3.5 hosting [closed]

Which is best free asp.net 3.5 hosting. No need for big bandwidth, no need for database. Only must be stable. Thanks.
7
votes
4answers
212 views

Why does ASP.NET access the State Server even when the page's EnableSessionState=“False”, but only for a VB.NET site, not a C# site?

Our website uses our own custom-built session state management separate from ASP.NET Session State. But because a handful of special pages use SQL Server Reporting Services, we also need to enable ...
7
votes
1answer
207 views

Error converting datetime to string

I am getting an error when I attempt to display a datetime value in a textbox: My code is: txtStartDate.Text = rdrGetUserInfo.IsDBNull(14) ? String.Empty : ...
7
votes
3answers
3k views

What Causes “Internal connection fatal errors”

I've got a number of ASP.Net websites (.Net v3.5) running on a server with a SQL 2000 database backend. For several months, I've been receiving seemingly random InvalidOperationExceptions with the ...
7
votes
3answers
7k views

How do I convert a Bitmap to byte[]?

Basically I am inserting an image using the listviews inserting event, trying to resize an image from the fileupload control, and then save it in a SQL database using LINQ. I found some code to ...
6
votes
6answers
347 views

How to use a .NET 4.0 web application within a .NET 3.5 web application?

My company has a website built in ASP.NET and targets .NET 3.5. It is too mangled and massive to be converted to .NET 4 in a timely manner. I am tasked with building a ticketing system. I want this ...
6
votes
3answers
3k views

Can ASP.NET MVC 3 run inside a ASP.NET 3.5 web site?

I would like to know if it is at all possible to get an MVC3 solution wrapped in a CWAB (Composite Web Application Block) solution built in 3.5? I'm aware that in IIS, 2.0/3.5 and 4.0 sites can run ...
6
votes
5answers
1k views

How to check if a DateTime range is within another 3 month DateTime range

Hi I have a Start Date and End Date per record in a db. I need to check to see where the time period falls in a 2 year period broken into two lots of quarters then display what quarters each record ...
6
votes
3answers
3k views

Do a database query on Textbox onblur event

I am using asp.net 3.5 with C#. I need to do a database lookup when a user enters ProductID in txtProductID. I guess doing javascript is out of the question since this will have to be server side ...
6
votes
2answers
1k views

What's the best way to minify the ASP.NET generated Javascript?

What's the best way to minify the ASP.NET generated Javascript, such as the ones served by webresource.axd, in ASP.NET 3.5 at runtime? I tried using the MbCompression module but it's not working with ...
6
votes
4answers
1k views

SharePoint 2007 - RunWithElevatedPrivileges - Pitfalls of using this

I have a strong gut feeling that using SharePoint RunWithElevatedPrivileges should be avoided like the plague, but need to convince some others as to exactly why. Here's what I have. Spawns a new ...
6
votes
5answers
9k views

IE 7 bug? - prompt save / open when downloading file - c# asp.net 3.5

I have an aspx page with linkbuttons that fire javascript to pop open a new aspx page to stream files to the browser for downloading by users. When developing and unit testing on XP SP3, IE 7 and ...
6
votes
1answer
1k views

Faking foreign key updates using entity keys

In Alex James' Entity Framework tips articles, (which are excellent by the way) he talks about how to fake foreign key properties. This seems like exactly what I need, but for whatever reason I can't ...
6
votes
4answers
7k views

GWT and .NET

How can I use GWT together with Visual Studio to create an ASP.NET website? If it is possible. Thanks
5
votes
2answers
123 views

AjaxControlToolkit - Extenders - Whats the “current” approach?

Currently, I have a ASP.net 3.5 web application for which I currently am working on the UI.I have been out of touch of doing web ui's for a while. When i last did UI related work (way back in 2007), ...
5
votes
2answers
3k views

Reading system.net/mailSettings/smtp from Web.config in Medium trust environment

I have some inherited code which stores SMTP server, username, password in the system.net/mailSettings/smtp section of the Web.config. It used to read them like so: Configuration c = ...
5
votes
2answers
1k views

Binding a List<string> to a Listview in asp.net 3.5

How do I bind a List to a in ASP.NET 3.5 <asp:ListView ID="lvDiagnosisCodes" runat="server"> <LayoutTemplate> <ul> ...
5
votes
1answer
496 views

creating a user in Active Directory: A device attached to the system is not functioning

Consider this code attempting to create an Active Directory account. It's generating an exception here with a certain set of data. It's not clear right now what's causing the exception. var user = ...
5
votes
2answers
603 views

Can i view the raw request made by soap wcf call

I am making a SOAP request using WCF to a third party service. The service requires that I sign the request, which I think I am doing but I get the error: Could not create SSL/TLS secure channel So ...
5
votes
1answer
398 views

Why is @MasterType directive not implied when setting @Page masterPageFIle?

The docs for @MasterType have this example. <%@ Page masterPageFile="~/MasterPage.master"%> <%@ MasterType virtualPath="~/MasterPage.master"%> Why is @MasterType even needed? ...
5
votes
6answers
558 views

ASP.NET: Code behind or no code behind?

Why would anyone want to not use a code behind file so that server sided code is separated from markup? Wasn't that supposed to be one of the advantages of .NET over classic ASP? Personally, I think ...
5
votes
5answers
757 views

How can we stop web page view after signout using browser back

I am having web site in ASP.NET. We have two type of login 1. Users 2. Administrator I am facing following problem during testing Problem statement: Suppose i loggedin by user login and surf all ...
5
votes
7answers
276 views

How can I convince my admins to upgrade from ASP.NET 2.0 to 3.5?

I am trying to convince my web server admins to upgrade our version of the .NET framework from 2.0 to 3.5. I was wondering what are the best reasons to upgrade, from a server admin prospective. ...
5
votes
7answers
3k views

How do I disable right click on my web page?

Can I disable right click on my web page without using Javascript? I ask this because most browsers allow user to disable Javascript.
4
votes
1answer
456 views

How to catch HttpRequestValidationException in production

I have this piece of code to handle the HttpRequestValidationException in my global.asax.cs file. protected void Application_Error(object sender, EventArgs e) { var context = HttpContext.Current; ...
4
votes
1answer
348 views

Does upgrading a WCF service from .NET 3.5 to 4.0 change the contract?

If I upgrade a WCF Web Service from .NET 3.5 to 4.0, making no other changes, is there any risk of a change to the contract exposed to the outside world? ie. Will my consumers need to reconsume the ...
4
votes
1answer
511 views

How to determine feed type of a .NET SyndicationFeed (RSS vs Atom)?

Is it possible to determine from the System.ServiceModel.Syndication.SyndicationFeed instance what type of SyndicationFeed is being read? If all I have is the url (blahblah.com/feed) it might be rss ...
4
votes
3answers
727 views

Asp.Net 3.5 Routing to Webservice?

I was looking for a way to route http://www.example.com/WebService.asmx to http://www.example.com/service/ using only the ASP.NET 3.5 Routing framework without needing to configure the IIS server. ...
4
votes
4answers
3k views

Calling an HTML table from code behind

I am trying to access an HTML table from code behind, and set its visible="false" property (depending on what value the user has selected). The table has an id value and a runat=server attribute. How ...
4
votes
3answers
1k views

GridView's NewValues and OldValues empty in the OnRowUpdating event

I have the GridView below. I am binding to a custom datasource in the code behind. It gets into the "OnRowUpdating" event just fine, but there are no NewValues or OldValues. Any suggestions as to ...
4
votes
4answers
2k views

How to call a webservice programmatically in asp.net

How to call webservice programmatically in asp.net without using add web reference? My webservice url keeps on changing. Hence i need to capture the url at runtime and display the results. Please ...
4
votes
3answers
6k views

Getting a Return Value in C# asp.net from a stored procedure (syntax issue)

I am having issues trying to get the syntax correct for my C# 2008 asp.net code. I need to get a return value (Select @@Identity) from my stored procedure My C# code is: SqlConnection conn = ...
4
votes
3answers
1k views

ASP.NET WebService is Wrapping my JSON reponse with XML tags

I'm not sure where I'm going wrong of what I'm missing. I'm building an ASP.NET 2.0 (on the .Net 3.5 framework) Web application and I am including a webservice. Note that this is not an MVC project. ...
4
votes
4answers
712 views

Controlling which WebMethods get exposed externally in a WebService

I couldn't think of a decent title, so let me first apologize for that. I have a WebService (call it A) written for my app so I can take advantage of ASP.NET 3.5 AJAX features. I use the generated ...
4
votes
6answers
370 views

Architectural Design DAL Layer

I am working on architecture of mid sized web application & for my DAL layer i am having 3 options 1) Traditional Stored proc Based Architecture (Using NTiers Template of Codesmith) 2) LINQ To ...
4
votes
4answers
149 views

What is the Best Way to Debug a Windows Service program in Visual Studio 2008

I am using the Microsoft Log Parser in a Windows Service. The program works in a regular web page but when I put the code in a windows service it does not work. I put Breakponts in the windows service ...
4
votes
10answers
10k views

LINQ to SQL — Can't modify return type of stored procedure

When I drag a particular stored procedure into the VS 2008 dbml designer, it shows up with Return Type set to "none", and it's read only so I can't change it. The designer code shows it as returning ...

1 2 3 4 5 17