You can change the page directive for the asp.net page to not use the codebehind feature.
<%@ Page Language="vb" AutoEventWireup="false" src="tt.aspx.vb" Inherits="tt" %>
This only helps on asp.net pages and any other classes will need to be compiled and the dll updated.
Basically I have a list of City's with the the english spelling (main city list). I also obtained a list of alternate city spellings(with cyrllic etc) that I want to allow searches by as well but match to the main city.
The reason I am joining on a calculation is I want to join the two...
Can anyone give me any suggestions on speeding this query up. I have indexes on the lat and longs in both tables. Basically I have a list of places in W_Data....and a list of alternate names for those places in ULocator. I want to do a search for all places where a name contains 'al' and if the...
Can anyone give me any suggestions on speeding this query up. I have indexes on the lat and longs in both tables. Basically I have a list of places in W_Data....and a list of alternate names for those places in ULocator. I want to do a search for all places where a name contains 'al' and if the...
Basically I changed strategies and inside the code behind before I databind I added a column to the dataset called styleClass. Then I looped through the dataset and say
if CustomerID Field = "" THEN
styleClass field gets set to MainTable_Class
else
styleClass field gets set to...
lisfolks --The development server we are connecting to is running win2003 server. The desktops have Win XP prof and are using VS.NET ver 7.1.3088 / .NET FRAMEWORK version 1.1.4322
chiph -- We are using VSS but I don't think that is the problem. We are not even working on the same files/website...
If using IIS6 try this.Go to IIS and under the properties for that site make sure the mime type .TMP is accepted. What happens is VS.NET tries to write a tmp file to the location to make sure that everything jives. Since IIS6.0 is locked down it will not allow an http request of type .tmp. So...
We have two developers using VS.NET to access a development server via a network share. When one of them gains access to a Solution and then the other tries to access anything on that share we get the error. "The Local device name is already in use.This connection has not been restored".
This...
Why not tag a static field onto the end of each q1 and q2 and order by that.
SELECT C.CLIENTGROUPID AS GROUPID,
C.CLIENTGROUP AS 'GROUP','0' as gOrder
FROM TBLCLIENTGROUP C
UNION
SELECT 0 AS GROUPID,
'<< Select >>' AS 'GROUP', '1' as gOrder
ORDER
BY gOrder,'GROUP' asc
I got it going. The problem was with IIS 6.0. I had to set it to allow .tmp files to be served via HTTP. They are not allowed by default.
Good Article about it
http://www.iisfaq.com/default.aspx?View=A538&P=198
What should the application name be? Site1 or test.site1.
Right now I am setting these projects up from my laptop using a file share to connect to the test server. Is that a problem?
I have a few existing web sites set up under IIS and they are using host headers. The IIS Setup looks like
Default Web Site
Test.Site1 --> inetpub/wwwroot/site1
Test.Site2 --> inetpub/wwwroot/site2
Test.Site3 --> inetpub/wwwroot/site3
..etc
These all contain asp3.0...
I do my development in a test environment and then just copy the files to the production server. If the set up is the same that is all that should be required. Make sure the asp_client folder resides where the validation code is looking..also make sure that if there are any variables that are...
Ok I got it to print the subtotal. Now how do I access the value to check whether it is a subtotal...and change the style of that row...something like.
<ItemTemplate>
<% if Container.DataItem("Customer_ID") = "" then %>
<tr class="Main_Table" >
<% else %>
<tr class="SubTotal_Table" >
<%...
When I applied for a SSL Certificate from thawte it mentioned that after I created the CRS I should backup my private key. How do I do this? The private key is surely not the CRS(Certificate Signing Request)? How do you access this private key. I read that I must keep a copy of the private key...
I have a dataset that I am displaying using a repeater control. I want to display a subtotal every ten records. How to do? Can you set the Footer row to show every ten records?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.