I have a class file called shipping.cs , where i calculate my ground shipping like below
[Code]....
NOW THIS IS WHERE I AM STUCK. how can i add these 2 options to my existing shipping cost in such way the shipping cost should include ground shipping plus one of the option
basically i want to provide all the shipping options to my customers.
But if I do like this they are added after the items from the databind. I want the Select and All as the two first ones and then get the rest from the databind. How do I do that?
I have a bound dropdown list populated with a table of names through a select, and databinding. it shoots selectedindexchanged that (through a postback) updates a certain gridview.What happens is, since it runs from changing the index, the one that always comes selected (alexander) can only me chosen if you choose another one, then choose alexander. poor alexander.What I want is to put a blanc option at the beginning (default) and (if possible) a option as second.I can't add this option manually, since the binding wipes whatever was in the dropdown list and puts the content of the datasource.
need a connection to only write records without using sql, i need to prepare my new table records and write it to the database in a single passage, im using oledb how is it done?
I have a Default.aspx program that contains a Treeview with a SiteMapDataSource. I also have a web.sitemap loaded up with urls. When I run the deafult app I get the tree layout that matches the numbers of options but no text on any of the options to click.
I am trying to get a .txt file to be read by my server application. My problem is that i cannot get it to read user information. I would like for my application to do something like if there is a "#", to read the next 2 lines down for more information.
I have an asp.net application. I want to add a global.asax and global.asax.cs file to my project. In the IDE when I select to create a new global.asax file, the option to create a CS code behind file is greyed out. When the global.asax file is created, no code behind is created, instead code is placed in the global.asax file and the global.asax.cs file is never created? Why is the option for a C# code behind file greyed out?
I have followed this link and it seems to work in the sense that it adds webparts from my XML file successfully.
[URL]
However, the actual controls themselves are never displayed and their respective page loads are never called.
The controls themselves work fine if I hardcode them into the catalog zone and inherit them from user controls but when I change their inheritance to webpart and try and use the control from this example, as mentioned nothing appears. Clear as mud?
An example of a control -
public partial class hello : WebPart {} <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="hello.ascx.cs" Inherits="Controls.HomePage_Controls.hello" %> <asp:Label ID="lbl1" runat="server" Text="Hello" Font-Bold="true" Font-Size="Large" ForeColor="Blue" />
i generated a zip file of xml file,,ie aa.xml.zip....but after downloading that file,i extracted the zip file,then i cant getting in the correct format of xml file with extension .xml...how will possible this.
I am using MVC 2. I have a master page and a view that uses this master page. I have to use a javascript file for this view only, and not for the other views. What is the best way to add a javascript file to this view? What I currently did was to add the javascript file at the top in my content tag. Is this the best way to do it? I did it as follows:
The content place holder for this content tag in my master page is in a div, so it is complaining that a script tag can not be in a div, and underlines it in green. So I am assuming that there is another decent way of doing this?
In the application a user will upload a PDF file and then upload a personal signature created using a digital pen. How can I embed this signature in the pdf file?
I have an AJAX-heavy ASP.NET web application developed using .NET 4.0, using TFS as our source control. We recently upgraded our dev tools to use VS2010 and TFS 2010 exclusively, but now every time a file is checked out, we see visual studio reloading all the symbols, and all the sessions being dropped.
After putting some error logging code, we discovered the reason for the recycle is it reckons App_offline.htm is changing whenever we check out. This doesn't exist anywhere in the project, and my SO-fu has found some information about SQL Express making this file get created and deleted, so it's possible that's what's happening here.
It looks like I do have SQL-Express installed, but even disabling the services that are running, the problem persists.
Is there any way to stop a check out from adding/removing this file, if this is indeed what is happening? It's beyond frustrating to have the app recycle whenever I simply check out a file...
i am making a Website with c# and ASP.NET 3.5, i just made an HttpModule to handle the NHibernate Session Life (Open and close).
I added it to the web.config and everything works fine. (all the query, code, etc working fine) except that CSS file of my masterpage is not loading !!
I have a new blogengine site up and want to set up syntax highlighting. The problem is that I have a few files (javascript and css) that I need to add the the head of the page, but there is no one page or masterpage. where to write out these references so they will show up on all pages?
I have an xsd that describes XHTML documents. However the application I'm working with may have some selected asp.net controls within to the markup at the point is validated. Therefore the validation fails.
An example control could be:
<smart:Address runat="server" />
I wanted to add a new element to the xsd file but when I specify:
<xs:element name="smart:Address">
I get validation errors as an element name must not have a colon in it.
how I might be able to extend the schema file to allow selected server controls?
I'm trying to install a 301 redirect where the instruction is as follows:
"In my Global.asax file (You can add this to your site from Visual Web Developer or Visual Studio by selecting File->New), In the Application_BeginRequest event, I added a call to the following code:"
The code is at bottom if needed. When it says "added a call to the following code:" does that mean something more than just putting the code inside the Application_BeginRequest section of my global.asax? For example, here's what that section looks like in my site:
I'm doing a multiple file upload script that add flies to a listbox and afterward uplods them to folder.
Every thing goes fine, even under the size and a extension restrictions, but when I try to add an .exe file with 30MB I would expect the script to write a warning saying the file is over the size limit and as an extension that cannot be uploaded, instead it shows a Page Unavailable
I'd tried to troubleshoot with try/catch on the init event but it doesn´t reach that far, it seem's that the compilation stops with no explanation...or is there?