0
votes
0answers
9 views
ASP.NET UDP socket code works in development, but not in production on IIS.
I have the following UDP broadcast listener running as a static component in a seperate thread on an ASP.NET web application. Why I would do this is really, unimportant, but the reason why this wont …
0
votes
3answers
42 views
How to keep an AutoIncrement/Identity value without a database?
I've received a rush project (asp.net c# framework v2), of course due on Monday morning. It's a very simple project -- add a "Request Quote" page to an existing site. Basically, collect some info …
0
votes
0answers
7 views
latest image upload asp.net 2.0 applet
hey everyone,
I use the following coding to show six images from the latest photo album i uploaded picture to. However the images being shown are the 1st six images in the folder (which are the ones …
0
votes
1answer
26 views
Identifying the download status of a file in web application
Hi,
I am developing a web application in .Net 2005 in C#. Here there is a provision that allows the user to download the file from our server which will be mostly .doc files. So I am using …
1
vote
3answers
39 views
ASP 2.0 and partial classes
One of our contractors gave us an ASP.NET 2.0 web site and I'm having a little trouble integrating it into our process. He gave us the project as a zipped directory, no solution file or anything. I …
0
votes
1answer
10 views
Styles in dataList control
In the ItemDataBound handle i set backgroud color to some items:
protected void MyDataList_ItemDataBound(object sender, DataListItemEventArgs e)
{
if (e.Item.ItemType == …
2
votes
1answer
26 views
Remove anchor on postback
Opposite of this question: Retain anchor after postback in asp.net
I'm having the issue that on postback, it's keeping an anchor.
I'm starting in Browse.aspx; user clicks something which takes them …
0
votes
1answer
30 views
Allowing partially trusted callers security exception is been thrown althought running on Full trust mode
Hey,
While developing using ASP.net 2.0 (C#) and NHibernate 2.1.0
I am getting the error:
System.TypeInitializationException: The type initializer for 'NHibernate.ByteCode.LinFu.ProxyFactory' threw …
0
votes
2answers
19 views
Latest images uploaded coding problem
Hey,
anyone could help me understand the following asp.net 2.0 coding?
It is supposed to show me a couple of the latest photos i uploaded to a particular folder in the photoalbum.
however when i …
0
votes
0answers
5 views
Highlighting all user controls in an ASP.NET page
Hi,
I want to highlight all user controls used in a page by adding a border around it. We are doing this to facilitate debugging. I could override RenderControl method in user control base class to …
0
votes
2answers
21 views
Gridview : Hyperlink and description in the same column cell
Hi Guys,
Apologies for the newbie question. My client wishes me to make a small change to the gridview on his http://www.flogitdonegal.com/SearchPage.aspx page.
Note the way the Title column is a …
0
votes
0answers
10 views
ASP.net Compile time XML/dataset checks
I would like an automated way to run compile time checks on datasets (or any xml) to make sure that expected values are found for certain properties. I have a fairly complex dataset in my asp.net Web …
1
vote
1answer
23 views
How can I set information on a cell in a datagrid based on its header or column?
I have an ASP.NET 2.0 DataGrid, like so:
<asp:DataGrid
runat="server"
ID="_customerTable"
CssClass="gridDisplay"
HeaderStyle-CssClass="headerRow"
AutoGenerateColumns="False"
>
…
0
votes
3answers
28 views
ASP.Net HttpContext Cache— why do I read Null when someone else says “”?
I have a coworker who's written the following line in the page load method in an aspx page:
myDataSet = (DataSet)HttpContext.Current.Cache["dataset"];
The first time I hit the page …
1
vote
2answers
40 views
Want to use image in datagrid to show active and inactive user?
i have a database of country table. sql 2005 like,
country_id country_name region area population gdp status
84 indi asia 3432 3423 343 …
