5
votes
4answers
1k views
.NET - Get protocol, host, and port
Is there a simple way in .NET to quickly get the current protocol, host, and port? For example, if I'm on the following URL:
…
0
votes
How can I override an inline style with an external css?
Unfortunately, inline CSS is always the last style applied to an element, so the inline styles will always override external styles.
If the Gridview's generated styles are giving you fits, …
0
votes
Opacity issue with css, div, and asp:Image
Try this:
.Splash .imgOpac
{
filter:alpha(opacity = 100);
-moz-opacity:1.0;
}
That should override the Splash class.
…
0
votes
How to add custom tablecell collection to gridview row
Hi deadbug--
Does your custom GridView control extend the built-in GridView?
If so, it should be possible to use your custom TableCell in your GridView's RenderContents function. …
1
vote
Not Changing Header Text Color In Gridview through using CSS
Hi Kartik--
The CSS class you've assigned (GridHeaderStyle) is being applied to the header cells, not the header links. It sounds like the default link color is being applied.
Add t …
1
vote
How to dynamically show images in a asp.net gridview?
This is a little messy, but it's all contained in the template tag:
<ItemTemplate>
<img src='<%# (bool)Eval("signoff") ? "thumbsup" : "thumbsdown" %>.gif' alt="what …
0
votes
Add Gridview Row AFTER Header
Hi ropstah--
Try this when you add the row to the InnerTable:
t.Controls.AddAt(1, r)
Here's a quick basic test I did, which seems to work OK:
…
0
votes
how to combine dropdownlists and null fields in gridview?
Hi David--
Please try this:
<asp:DropDownList ID="DropDownList1"
DataSourceID="SupplierDataSource"
DataValueField="SupplierID"
DataTextField="Compan …
1
vote
Session timing out on ASP.NET app after visiting PHP app on same server
Hi hellbox--
I've had similar problems with classic ASP sites running on the same server as ASP.NET sites.
I'm usually able to fix the problem by creating 2 application pools under …
