Possible Duplicate:
Can you do complex editing of Word Documents in a browser?
Hi All,
Is there any free tool available that allows to open and edit word documents inside browser.
I am using ASP.Net 2008 Express IDE.
Thanks
...
When I use:
System.Environment.Version
The result is "2.0.50727.3053"
I know that 3.5 is compatible and in IIS is identified as 2.0, blah blah...
I would like to know the exact .net version installed and if another resources are installed, like ASP.NET MVC, etc. The problem is that the website is installed in a shared hosting, so I...
I am retrieving Objects from a collection and assigned objects and objects within objects to web user control from hosting web page.
<uc1:bookmarksList runat ="server" Link =<%#DataBinder.Eval(Container.DataItem, "OLinks")%>
where Olinks is the objects within current objects list in collections(e.g User is current object in collec...
Hey Folks,
I'm trying to utilize CAS to perform SSO on the same domain name. however i can't really understand CAS. does CAS provides user management or i have to implement it myself ? can i integrate ASP.NET membership provider into CAS as the athentication provider ?
Thanks !
...
I know that the reason that Microsoft came out with ASP.NET MVC was to make it simpler to do Test Driven Design (TDD) for ASP.NET. However, I have a rather large brown field (existing) application in ASP.NET WebForms that I would love to implement some TDD type functionality in. I'm assuming that there IS a way to do this, but what are...
I want to run some basic checks when my ASP.NET server goes up. Mostly simple things like does the db exist, am i missing any bins, etc. What function do i use to call my code?
...
Hi All, I'm creating a database factory pattern for an application that should be able to work with SqlServer and Oracle. I've used a similar approach suggested in the following article:
http://www.primaryobjects.com/CMS/Article81.aspx
Now, the problem is that my application communicates with multiple databases on the same server. For...
Hi there,
I hope you can help. This has been confounding me for hours.
I have a RadioButton list in my CustomerGroupConfirm.aspx page:
<div>
<table>
<tbody>
<tr>
<td nowrap="nowrap">
<asp:RadioButtonList ID="rblContractGroups" runat="server"></asp:RadioButtonList>
...
Hello,
1)
A) One of the CreateUserWizard’s optional controls is also ContinueButton control. This control raises ContinueButtonClick event ( if CommandName is set to Continue ), but what is the purpose of this event? Thus, when should ContinueButton control be used?
B) CreatingUser event is raised by clicking on CreateUserWizardst...
Hello,
1) Is there any relationship between anonymous session ( where random identifier is generated for anonymous user, which enables the use of temporary profiles for unknown users) and a Session state?
2) If anonymous user is authenticated we need to clear anonymous identifier so that MigrateAnonymous event won't fire again. Bu...
I have in my web application an ADO.NET Entity-Framework *.edmx file.
When I browse in the browser (when the application is running) to an edmx file, it doesn't show the error page like when browsing to a *.cs or vb file, it opens the edmx and shows my model scheme to all the users!!!
How can I avoid that.
...
Hi guys,
I know this is wierd, but I am using ASP.NET MVC, I have real simple jQuery on 2 views. One view is the Home page and the other is an item details page. This page is opened using an Action Link on Home Page. The jquery on item details page does not fire at all.
$(function() {
alert('Fired!');
$('#contact').hover...
Use XML files based or SQL server? Which would be more efficient based on storage size, retrieval and performance?
...
Hi!
<asp:TextBox TextMode="Password" runat="server" />
I want that when the user types in text, it should show • rather than a simple asterisk, is there a way (in win-forms' TextBox there is a property PasswordChar, what is it's similar in web)????
...
Im stumped!
What is the best way to programmatically set a selecting parameter for the EntityDataSource control?
Specifically, I want to use the Page.User.ProviderUserKey to get a record in a custom User Details table I have, for a DetailsView.
I've seen code using the asp:ControlParameter to pull a value from a control, but that almo...
Hi, I'm trying to access a Page within an HttpModule and I think I should do this by calling HttpContext.Current.Handler (This should reference the current page) but I'm getting null all the time.
I'm developing using .Net 3.5 framework.
I'm checking this on AuthorizeRequest and AuthenticateRequest
Thanks.
...
I'm trying to build a website that has a Member section, and I'm struggling to find a fast and efficient way to build the enduser pages, which will pull a user's data.
For example, the user's "my account" page. They simply need to be able to view and edit the data. Would you use the Entity Frameworks EntityDataSource control? And bin...
My mvc page returns json by using the function Json(mycustomclass) to return a JsonResult object.
This works just fine except, I need to wrap the json in a callback so that jQuery can use it.
I want it like this:
jsonp1246168411282({"myjson":"some values"})
but I am getting this:
{"myjson":"some values"}
Is there any way I can 'wrap'...
Hi folks!
I implemented a custom membership provider.
I've also implemented my custom AES Encryption/Decryption overriding the abstract EncryptPassword/DecryptPassword of the MembershipProvider.
however, when I trigger ValidateUser, the password is not automatically converted, am I missing something?
Is it supposed to be called automa...
I want to create site thumbnails through my web application, so I thought I would use the WebBrowser control. However, I get an error:
System.Threading.ThreadStateException: ActiveX control '8856f961-340a-11d0-a96b-00c04fd705a2' cannot be instantiated because the current thread is not in a single-threaded apartment.
I tried settin...