i have an asp.net website and over time is been more and more of a data repository where i have numerous database tables and the site just ships out this data.
I am realizing that a WIKI might actually start to be a better model for what my website is turning into. or atleast parts of it as its really just adding and updating content th...
I have a login page that works in my local development environment. When I push the site onto the web server, i am getting this error when trying to login from the asp.net login control.
An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact th...
I have a asp.net web project I am working on, and found out my roles and such are stored in an .mdf file. While reading on attempting to connect to it via SQL Management Studio (using SQLExpress 2005), I found this article:
https://help.maximumasp.com/SmarterTicket/Customer/KBArticle.aspx?articleid=878
Now, my question is - should I b...
Hey Everyone,
Im getting this error sporadically.
Im running VS 2008, Win2003 Server and it only happens in IE 6, 7.
Sys.InvalidOperationException: Component not found 'ctl100tabsPlan'
It doesnt happen all the time..just when the page takes a bit longer to load it seems. Anyone find a fix for this?
...
I have an odd session problem. I store a session in a global session class and access it on different pages. Anyway, most of my pages work fine except this one page which is really preplexing me. I set the session in one page and access it on the next for a SQL select / update /delete and with my FormView / GridView /Details View. Needle...
I'm having a problem with some code I've written. I've had to anonymize it, but I can give the problem. This javascript runs inside an iframe, and is part of an object that gets instantiated. The problem in particular is that I get a repeating error every time that "Type 'Object' Cannot be converted to type 'Function'" in the invoke()...
I have this textbox on an .aspx page, which when submitted it stores whatever typed in the textbox into a nvarchar column in MS SQL 2005.
It works fine, until you try putting chinese characters.
These characters are converted to question marks (?) in the database.
How do you store non-english characters from a <input type="text"> to da...
I want to use a user configurable workflow engine for an ASP.NET application. The workflow engine should provide a web based graphical designer for the end user and an API for integrating the workflow designed by the end user graphically. Does anyone have a suggestion for .Net based open source configurable workflow engines or a commerci...
I am maintaining a session for user login.
Consider a scenario that, User working on page20 with his account credential.
He is idle for the session variable time out. Then he start working on page20 and click link of page21.Here session is expired so he'll redirect to Login page.
After successful logged in, User should redirect to the ...
Going from Rails to ASP.net has been quite a pain. But I was wondering if any gurus out there know of equivalent translation of "cycle" from Rails for ASP.net ?
http://api.rubyonrails.org/classes/ActionView/Helpers/TextHelper.html#M001721
Basically to be able to conditionally output the nth parameter based on the nth time it's called....
I have to search inside PDF files for an upcoming (ASP.NET MVC) project in shared hosting environment. What is the best solution? Any third part product?
...
i have set enableviewstate property of linkbutton and label to true.also regenrating same buttons on postback in pageload event handler.but m not able to call onclick event handler of linkbutton.can u please tell me what is problem with code?
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sende...
This one has me stumped, and I think it might be a bug in Microsoft's MVC implementation. I am building a MVC website using VS2008 SP1. In an attempt to lockdown my website I edited my controller to look like this:
1 public class IdeaController : Controller
2 {
3 [Authorize(Users = "whozmom")]
4 public ActionResult Index(...
I get the following error:
Cannot use empty object or column names. Use a single space if necessary.
Msg 1038, Level 15, State 3, Line 1
and the query command looks like:
SELECT TOP 100 PERCENT
[].[cms_page].[pa_id], [].[cms_page].[pa_key],
[].[cms_page].[pa_title], [].[cms_page].[pa_keywords],
[].[cms_page].[pa_description],...
Well since i installed IE 8 i get this error so i cant debug my asp.net page :(
"Unable to start program http://localhost:123/myapp/"
Could not find the element(or some thing like that translated from swe)
What must i do to get rid of this error? and IE more or less hangs after this, the window does respond but it only loads half of it...
I was just wondering if there is any easier ways to assign values to html controls from an object or vice versa in asp.net. To do it manually is just painful
//assign value
txtFirstName.Text = person.FirstName;
//retrieve value
var p = new Person();
p.FirstName = txtFirstName.Text;
However to do it "pragmatically" is also kind of pa...
Hello
If my ASP.NET app is set up for ADFS using Windows Integrated Authentication, I know this will work in IE, but will it work in Firefox?
I've seen some things on the web that indicate that there are problems, and you need to put a workaround in each client browser - http://codebetter.com/blogs/eric.wise/archive/2006/11/16/Note-to-...
I am developing an application in which I am displaying products in a grid. In the grid there is a column which have a disable/enable icon and on click of that icon I am firing a request through AJAX to my page manageProduct.aspx for enabling/disabling that particular product.
In my ajax request I am passing productID as parameter, so t...
My company has some classic asp sites and developing new sites in asp.net, and everytime we create a new site in IIS 6 all the sites go down for a couple of seconds. So I'm thinking of changing the default value of the ASP.NET version to 2.x since that is what we're developing and I'm wondinger if these settings somehow affect the classi...
Hi,
i have a MVC project which runs perfectly local. When I deploy to the production server I receive a compilation error:
BC30456: 'Title' is not a member of 'ASP.views_home_index_aspx'.
It makes me think that the inheritance of System.Web.ViewPage(of T) fails somehow... The project is deployed under http://server/ProjectName. The ...