I'm going to start taking an excel file for a bulk member upload in my ASP.Net C# Web application.
Does anyone know of any good free libraries for parsing excel sheets or where I can find good documentation for parsing excel files?
There's only going to be one sheet in the workbook... I'm just looking for something to get me started.
...
i am working on asp.net storefront(not mvc) but the one from aspdotnetstorefront.com
I try to add menu items
on topmenu but i am seeing (!menu.About!)" as result.
How to do this?
...
If one has an ASP.net web site whose web forms all inherit from a common base page--which checks things like authentication and redirects when a session has expired, etc--is there a way to use this base class in a ashx handler? I started going down that road by inheriting the base page class in the handler and realized this might not be ...
I'm able to run an asp.net application using a console host to host my services. This works fine.
When I install the services to a server and then attempt to access them with my application, I get an error when running my search function (it's a search application) I used to be doing it using a stored procedure that is dynamically crea...
This is a strange one. I have a couple of hyperlinks that I use for paginating a RadGrid (next page, prev page). All works well until I decided to hide one or the other when on the first/last page. So I added the Visible attribute and set a value of true/false using a databinding expression like so:
<asp:HyperLink Visible="<%#(int)DataB...
I am building an ASP.NET web application that will use SQL Server for data storage. I am inheriting an existing structure and I am not able to modify it very much. The people who use this application are individual companies who have paid to use the application. Each company has about 5 or 10 people who will use the application. Ther...
I am trying to implement the autocomplete method for textboxes.
I would like to use the example based on jquerys autocomplete provided here
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/j...
need to store additional userinfo in CUW steps
//register.aspx
<p>
<b>HomeTown:</b><br /> <asp:TextBox ID = "HomeTown" runat ="server"></asp:TextBox>
</p>
<p>
<b>HomepageUrl:</b><br /> <asp:TextBox ID = "HomepageUrl" runat ="server"></asp:TextBox>
...
Hello everybody,
I am facing a weird problem in production, not happening in Local machine.
I hosted an application in godaddy that has a aspx page where it collects the email addresses from the text fields (txtTOEmail,txtCCEmail, txtBCCEmail).
When I call the send method on the mail object, the mail is sent twice. But this is not happ...
I would like to call VB6 dll with office automation from ASP.Net using the impersonated user Identity to connect to database as well as launch excel for automation.
I want to pass the NT logged-in user identity to the vb6 dll which make the connection to the database(trusted connection), as it uses NT user info for database security an...
I have a PDF document with a number of text fields, several of which have a maximum length - namely, a maximum number of allowable characters.
Is there a way using iTextSharp to determine this setting? Here's the code I have so far:
Dim reader As New iTextSharp.text.pdf.PdfReader("Foobar.pdf")
Dim inputFields As IDictionary(Of String, ...
I'm just getting into QUnit testing, and have run into a problem on my first page :S
We use ASP.NET Service References to take advantage of async data loading on html pages, creating a reference to a web service in the same project. What ASP.NET does behind the scenes (ScriptManager control) is create a JS file representing the service...
I've done my homework, I've read a lot of articles, I searched and searched but still couldn't find my answer and it's kind of getting on my nerves because there's a very popular question all over the blogs and websites and it's just the same as mine, the difference is the answer is not what I want!
To be clear, the two pages are only l...
I have a gridview which I databind to EntityModel
This typically looks like
something a
something b
companyID
on Login I get and set the compnay which has the ID so what in essence I want to do is on databind set the Where clause of data source to what the server side paramter for company ID is.
I am sure this is super simple but it...
Hi all,
i am using ajaxToolkit:ModalPopupExtender and want to raise a server side event on its visibility...
<script language="javascript" type="text/javascript">
function pageLoad() {
$find('modalpopup').show();
}
</script>
--------------
<ajaxToolkit:ModalPopupExtender ID="modalpopup" runat="server"
TargetCon...
I am creating a CacheDependency on the file that my SiteMap provider uses. I would like to get the name of the file from my sitemap provider instead of hard coding it. Is there a way?
Edit
Duh, I forgot to mention: XmlSiteMapProvider that comes with ASP.NET
Edit 2
Reflector shows a private member field called _filename that isn't exp...
How to check browser support html5?
...
What is the IE6 equivalent to Request.UserAgent.ToLower().Contains("msie")?
As above it detects any instance of IE obviously, but I'm looking to only pull IE6 users so I can display a message telling them the site will render oddly in their browsers. I haven't been able to find the answer in my searches.
...
I'm installing ASP.NET MVC 3 Beta and this thing comes out :
This product requires Microsoft ASP.NET Web Pages 1.0. Please install the missing component, then try to install this product again.
What the hell? I'm using MVC 2 just fine. Should I go and install asp web pages 1.0 and where do I get if from ?
...
I'm using jQuery AutoComplete, and I have an auto-complete search box to search for users.
Default.aspx
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$("#<%= txtUser.ClientID %>").autocomplete('UsersAutoComplete.ashx');
});
</script>
<asp:TextBox ID="txtUser" runat="server" />
...