Tagged Questions

23
votes
7answers
31k views

Can I develop for .NET Framework 4 in Visual Studio 2008?

My ASP.NET application runs in IIS on my web server and uses Microsoft .NET Framework 4 Beta 2. (Its Application Pool is set to .NET Framework version .NET Framework v4.0.21006.) It gives this new ...
6
votes
3answers
518 views

ASP.Net Post timeout

I am stuck with asp.net post issue with last 2 weeks. Scenario: My application page has 3 controls. A WYSIWYG editor (Free Textbox), a text box to get name of the article being edited in WYSIWYG ...
5
votes
5answers
81 views

Duplicate type error?

We have been having a random issue with our live website. We're not sure what exactly is causing the issue. We tried clearing the temporary files but the issue happened again. We even killed the IIS ...
5
votes
2answers
123 views

How to detect .NET 4 from ASP.NET?

I have a web server that is run by a third party. I don't have direct access to the server but I can deploy ASP.NET code to it. I want to detect if that server is running ASP.NET 4 / .NET 4 or not. ...
5
votes
1answer
3k views

ASP.NET 4.0 Rendering problems with the menu control after removing of controlRenderingCompatibilityVersion=“3.5”

I am actually migrating websites to ASP.NET 4.0, having problems with the new rendering of menu controls. My websites make heavy use of nested menus. Hover effects are used and the layout is defined ...
3
votes
2answers
323 views

chars like: ' or " in header script code become: ' or "

I recently installed Visual-Web-Developer 10 and open my old asp.net 3.5 solution in it and converted it to asp.net 4 solution. every thing is working fine exept one strange problem: suddenly all ...
3
votes
2answers
329 views

Is ASP.NET with .NET 4 faster

I'm looking to upgrade my ASP.NET web app to the .NET 4 framework. Would I see performance improvements right away?
3
votes
3answers
206 views

Get description for HTTP status code

In ASP.NET you can set the Response.StatusCode to for example 404. Should the status line / description always be set? (to in this case "404 Page Not Found") How do you get the description if you ...
2
votes
3answers
39 views

send pdf statement without saving on application server

Requirment: To generate invoice in pdf format on company template and send it in email. Approach I used: Placed the company template at path: ~Content/InvoiceTemplate/ Using iTextsharp Pdf ...
2
votes
1answer
79 views

~ Paths resolved differently after upgrading to ASP.NET 4

We're upgrading a large system to ASP.NET 4, and we've discovered a strange issue with the way paths starting with ~ are resolved for some of our Ajax requests. Our Ajax requests use Server.Execute, ...
2
votes
2answers
1k views

Response.Redirect doesn't work in .net 4

where used on http://localhost:8692/Contacts/Default.aspx Response.Redirect("http://www.google.com") redirects to http://localhost:8692/Contacts/http%3a%2f%2fwww.google.com The problem just appeared ...
1
vote
5answers
114 views

ASP.NET 4.0 Industry Coding Standards

Is there are any documents / articles on ASP.NET 4.0 Coding standards? It would be of great help to me, to increase the quality in my code and thus adhere to industry standards. Thanks
1
vote
2answers
100 views

WCF : How to Set MaxReceivedMessageSize Quota

I have a WCF Service. I get the following message when I run the client application The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use ...
1
vote
4answers
550 views

Web.config appSettings: complex values

Is Web.config's appSettings section only capable of storing simple strings like this? <appSettings> <add key="OKPage" value="http://mysite.com/okpage.html" /> ...
1
vote
1answer
136 views

Moving From ASP.Net 3.5 to 4.0 - System.Security.Permissions.FileIOPermission Exception

I'm sure this can't be too hard; but I'm struggling. The error is Exception Details: System.Security.SecurityException: Request for the permission of type ...
1
vote
2answers
151 views

Is ASP.NET AJAX for script controls obsolete too?

I've been developing some script controls in server-side with their client-side counterpart. Since I've found some articles and Stakoverflow questions regarding that Microsoft has practically ...
1
vote
2answers
75 views

How to have a form PLUS button controls outside the form in ASP.NET?

I have a form and I want some controls to work outside the form. When I have a form on the page, and a button outside the form, the button doesn't work!? Here is my code : <form method="post" ...
1
vote
3answers
450 views

ASP.NET control to render a <div>

The Label control in ASP.NET seems to render <span> tags, but is there a server control to render HTML within a <div>? Sure, I could set display: block and it might look the same, but I'd ...
1
vote
3answers
301 views

convert html in a vb.net textbox

I have a textbox which I need to enter html code into (like < strong> or < em> for example). The trouble is this is causing an error writing this back to the database. A potentially ...
1
vote
2answers
2k views

.Net 4.0 Framework Causing Issue for aspnet_regiis during installation

We have a ASP.net 2.0 web app with an installer which appears to hit an issue with .Net Framework 4.0. This has occurred on XP and Windows 7. Seems to happen every time. During the installation, we ...
1
vote
2answers
314 views

In .NET 4.0 do you still need to handle gridview paging in code?

I haven't worked on the UI in some time. I thought that in ASP.NET 4.0, gridviews handle the paging automatically (if you set paging=true). Is this true, or do you still have to handle it in code?
1
vote
2answers
718 views

what's the right way to bind sqldatasource to asp:label in asp.net 4.0?

Is it possible using Eval? If so, can someone post a short fragment to illustrate? My SqlDataSource returns 1 record with 3 fields, I'd like to Format these into a string. eg: Record Field 'Name' = ...
0
votes
1answer
77 views

ASP.net NHibernate No Persister Found

I have created an ASP.net 4.0 project and I wanted to use NHibernate to connect to my MySQL database located on my localhost. But since this was new for me I followed a guide (link) The most ...
0
votes
0answers
128 views

listbox selection not retaining on postback (yes i check for postback)

I have a listbox in an asp.net webpage. I select item 2. if i have autopostback on, this reloads the page and selects item1. I only databind the page on first load (!IsPostback), have stepped through ...
0
votes
1answer
166 views

The following exception was thrown by the web event provider 'EventLogProvider' [closed]

I can't get a new ASP.NET 4.0 application to work on IIS 7, in Windows 2008 R2. All I can see in my event log is the below error. I can't seem to find any information about what it means, can anybody ...
0
votes
1answer
52 views

ASP.NET 4.0 HiddenFields

HiddenField hidCurrentFooterLinks = (HiddenField)gvTaxonomy.FindControl("hidCurrentFooterLinks"); hidCurrentFooterLinks.Value = txtFooterLinkCurrentYear.Text; HiddenField hidPreviousFooterLinks = ...
0
votes
0answers
48 views

asp.net dev machine minimum requirements

I have been asked to find out the minimum requirements to setup a development machine for the asp.net 4.0 application. We have only windows xp (SP3) operating system here. The application should be ...
0
votes
1answer
47 views

Unable to hide elements from CSS using ASP.NET4

i am unable to hide my asp:buttons from CSS. i am using ASP.NET 4 CSS .SiteButton { display: none; visibility: hidden; } HTML <asp:Button ID="btnFromCalOpen" runat="server" Text=" ...
0
votes
1answer
304 views

.NET URI Routing MapPageRoute issue

Any ideas on how to resolve this issue? My Global.aspx: protected void Application_Start(object sender, EventArgs e) { RouteTable.Routes.MapPageRoute<TabsResource>("users"); } The ...
0
votes
0answers
44 views

What architecture should we use for develop web application for 2 lake users in dot net 4.0(Sql Server 2008 in back end) [closed]

Please suggest me on above query; this application will be access by thousands of users any time. Thanks In Advance Deepak
0
votes
1answer
389 views

Master page, tab and a postback

I have a Telerik Tab strip control on a master page as follows. <telerik:RadTabStrip ID="rtsOrders" runat="server" Width="350px" Skin="Outlook" Align="Justify"> <Tabs> ...
0
votes
3answers
538 views

Parameter is not valid calling Bitmap.Save()

This in in an ASP.NET application. Locally, this code runs fine, but on our production server, it throws an exception of 'Parameter is not valid' when Bitmap.Save() is called. Should I not be using ...
0
votes
1answer
299 views

Dispaly Category and SubCategory in Hierarchy in DropDownList

I have to display the Category and SubCategory in the dropdownlist in hierarchy,like as follows-- cat1 --cat11 ----cat111 ----cat112 ----cat113 --cat12 ...
0
votes
1answer
379 views

Migrated to ASP.NET 4.0 on IIS 7 and can not get custom errors to work

I have an ASP.NET Web Application project that used to target ASP.NET 2.0. I installed ASP.NET 4.0 on the web server hosting the web application and changed the web application project to target .NET ...
0
votes
2answers
415 views

Problem with RenderOuterTable property for .NET 4.0 controls

According to the new 4.0 framework overview, one should be able to add the attribute RenderOuterTable="false" to a control that supports the attribute and see CSS friendly code be spit out - in other ...
0
votes
1answer
67 views

problems with correct update to .net 4.0 on win2003

Tried to test .net4rc1 site on test host with win2003. As expected by default server returned error about " targetFramework="4.0" in web.config. But since I switched ASP.NET version to 4.0 and reboot ...
0
votes
1answer
447 views

Workflow Foundation 4 - DeclarativeServiceLibrary - Error while calling second ReceiveAndSendReply Sequence - VS2010

I have created a DeclarativeServiceLibrary using VS2010 beta 2, Please check this image of Sequential Service Following is the code used to call these two activities ` int? data = 123; ...
0
votes
1answer
152 views

Using .NET 4.0 for development server

My ASP.NET application runs on IIS on my web server and uses Microsoft .NET Framework 4 Beta 2. (Its Application Pool is set to .NET Framework version .NET Framework v4.0.21006.) I debug on my ...
0
votes
1answer
552 views

AJAX change in .NET 4: Sys.Services.AuthenticationService

I'm testing my existing apps in VS 2010, and ran into my first break. ASP.NET AJAX authentication support has changed. ...
-2
votes
1answer
24 views

asp.net form controls - setting control id creates id an name attribute with same value [closed]

Possible Duplicate: ASP.NET: how to remove 'name' attribute from server controls? On asp.net form controls setting the id attribute seems to generate 2 attributes (id, name) with ...