asp.net-2.0 Questions
6
Solved
I have the following in my BasePage class which all my ASPX pages derive from:
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
ViewStateUserKey = Session.SessionID;
}
I also have...
Stratfordonavon asked 13/9, 2009 at 17:4
6
Solved
Recently, my team converted ASP.NET project from .NET 1.1 to .NET 2.0. Everything is pretty good so far except for one web page.
This is the error message I got when I tried to open this page:
...
Radnorshire asked 24/8, 2009 at 18:9
2
Solved
I have a form that will accept and save a MP4 video file. I need to be able to get the dimensions of the video as well. This will be running on a server running ASP.NET 2.0 so any external libs mus...
Altazimuth asked 23/2, 2011 at 0:53
4
Our ASP.NET 2.0 website processes credit card transactions via calls to Authorize.Net's API. Authorize has informed us that on a date certain, to be announced, our client must utilize TLS 1.2 proto...
Congius asked 25/1, 2017 at 22:48
7
Solved
I am new in SSL, whatever i read and know that its paid digital certificate and after using SSL in website https:// the data transfer is secure at network layer.
In my application i don't have muc...
Negotiable asked 23/7, 2009 at 10:47
3
Solved
I want my ApplicationContext constructor to have the UserManager as a parameter, but I am having trouble with dependency injection.
Code:
public class ApplicationContext : IdentityDbContext<Ap...
Acquiescence asked 21/9, 2017 at 22:24
2
I'm trying to upload a 20 meg file using the upload control and it's working fine on visual studio's built in webserver but once I publish it to the production server (which I have no access to) I ...
Arkose asked 4/11, 2010 at 16:18
5
Solved
If you open a web page on one of the websites hosted on our server, leave it for 20 minutes and then submit a form, a Validation of viewstate MAC failed. error occurs.
What possible reasons could ...
Arbutus asked 14/1, 2011 at 16:31
7
Solved
I've downloaded the Ajax Control toolkit
When I create a website from the Ajax control Toolkit template, I can create a web service in a single file (asmx) and hook this up to different Ajax contr...
Domash asked 20/5, 2009 at 15:56
8
can any body suggest me how to remove the app_offline.htm file from application root directory in asp.net web application.when i run the page it doesnt show the design of html source
Unrivaled asked 21/12, 2010 at 8:0
5
What is the default session timeout value in ASP.NET?
Harakiri asked 16/5, 2009 at 6:33
2
Solved
I am hosting WCF Service in IIS 7. They are running under .net version 2.0. Everything is working fine. But lately, i am getting error list "Potentially Dangerous request ...". I searched on the in...
Avictor asked 18/4, 2012 at 18:10
6
Solved
I currently have a databound dropdown list on my ASP.Net C# 2.0 website that has around 400 items in it. I want to replace it with something similar like the textbox in google search where you ente...
Aeropause asked 30/9, 2009 at 21:56
4
Is there any easy way to Deploy/Publish a website written in asp.net ?
And what is the difference between deploy and publish ?
Nashua asked 14/3, 2009 at 19:27
4
Solved
I've created a web page and it contains some settings value in Web.Config for example images. So I want to give the path of images in Web.Config file and file name in that particular image src.
I...
Tuque asked 11/11, 2010 at 9:15
7
Solved
I have a multi-select listbox which I am binding to a DataTable. DataTable contains 2 columns description and value.
Here's the listbox populating code:
DataTable copytable = null;
copytable = ...
Apus asked 18/5, 2009 at 12:37
5
I'm having reports and complaints from my user that they will be using a screen and get kicked back to the login screen immediately on their next request. It doesn't happen all the time but randoml...
Polemic asked 19/2, 2009 at 14:14
4
Solved
I'm using SEO-friendly URLs, and I can process most of them with ASP.NET, by mapping aspnet_isapi.dll to all URLs. (I set up an Handler Mapping in IIS that uses the dll for all paths. (path = *))
...
Number asked 21/2, 2011 at 19:46
3
Solved
I have the following module
public class LowerCaseRequest : IHttpModule {
public void Init(HttpApplication context) {
context.BeginRequest += new EventHandler(this.OnBeginRequest);
}
public v...
Wilmott asked 29/5, 2010 at 14:14
6
Solved
I have a web-page application already created, but when I open it in visual studio 2008, it says there that:
ASP.NET 2.0 has not been registered on the Web Server. You need to
manually configure ...
Iridis asked 15/3, 2009 at 10:15
10
Solved
I'm running IIS 6.0 on Windows 2003 and started getting this error:
Compiler Error Message: CS0016: Could not write to output file 'c:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NE...
Table asked 27/4, 2009 at 16:41
3
I want to capture certain, but not all, HttpWebRequest traffic in my application for debugging purposes. It's a web service hosted by IIS.
I have read How to: Configure Network Tracing. This works...
Ita asked 26/6, 2009 at 14:26
3
Solved
How do I include CSS reference in only certain pages on my asp.net website? If I include the reference in my master page, all pages of the website share the CSS reference.
Chromatography asked 25/10, 2010 at 11:7
4
Solved
I have a GridView on my aspx page which displays a collection of objects defined by the following class
public class Item
{
public string ItemName{get; set;}
public object ItemValue{get; set;}
}...
Monty asked 19/3, 2009 at 10:22
2
Solved
I want to set ASP.net custom validator error parameter text through client side javascript. How can access it via sender, args parameters in my function?
Peridium asked 25/10, 2010 at 6:52
1 Next >
© 2022 - 2024 — McMap. All rights reserved.