1
vote
2answers
24 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 …
0
votes
1answer
167 views
Changing the DateTimeMode of a few columns in a dataset after it has been populated with data
Hi, I need to change the DateTimeMode of some columns in an already populated dataset. (I don't want to change it before it gets populated as it would mean making changes in severa …
1
vote
3answers
258 views
formating datetime column in a DataSet.
Hi,
I have a dataset that is populated by reading excel file. The dataset stores the data from the excel.
The date in the dataset in in the format "2\2\2009 12:00:00 AM" but i nee …
0
votes
0answers
17 views
ASP.NET 2.0 Web Application and Log4Net AdoNetAppender
I've used log4net before, but the last time I used it was in a ASP.NET 1.x application and I've never used the AdoNetAppender. Basically everything appears to be configured properl …
0
votes
4answers
31 views
Keep track of number of events per timespan
What's the best way, in C# to keep track of the number of events per timespan?
For example, I want to limit my TCP application to, say, a maximum of 10 requests per minute before …
0
votes
2answers
61 views
System Out Of Memory Exception in Production Server
We have .net application installed on production server. It is using .net FrameWork 3.0 on windows server 2003 with RAM 4 GB.
But there is a problem in application while running so …
3
votes
12answers
128 views
How can I learn ASP.NET?
I am an absolute beginner at ASP.NET. How can I learn it better?
Currently I am reading ebooks. Can you suggest better ways, or other ways, I can learn ASP.NET?
0
votes
1answer
26 views
What is the best procedure to implement paging in a gridview considering size of Record ?
Hi all,
I have a table in sq server db having more than 1 million rows.
I need to show those data in a gridview with pagination in an asp.net page.
Since the record amount is la …
2
votes
2answers
303 views
asp.net 2.0 global themes not working on new windows server 2008
We're migrating our .net 2.0 websites from a Windows 2003 server (32 bit) with IIS6 to a Windows Server 2008 (64 bit) box with IIS7. I can't seem to get the global themes to work. …
1
vote
5answers
2k views
Compile Error CS0433 on pre-compiled ASP.NET 2.0 site.
I keep getting this error ever so often when I launch the debugger to debug my site. I'm using the Telerik controls, and usually the error is in my tab strip. Here is an example …
0
votes
1answer
30 views
How can I prevent ASP.NET from adding to the inline styles?
I have an element that I'm trying to style:
<tr runat="server" id="row" >
...
</tr>
And I set the style programmatically:
row.Attributes("style") = "background: #cc …
0
votes
5answers
55 views
Optionally display a text in place of GridView when the GridView has no rows
I have a basic GridView that displays a list of tasks to do (just an example)
<asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1" AllowSorting="True" > …
0
votes
1answer
23 views
File Upload / Memory Stream Security
Hi,
We are thinking of have a form on our webpage that would allow people to email attachments through.
The method used to do this is via a memory stream, avoiding any files bein …
0
votes
5answers
68 views
Can you view the XML generated by .Net when using a JavaWS service?
Does anyone know how I can view the XML being sent to a Java Web Service from a C# based ASP.NET page?
I've created a disco object web ref in .Net from my Java WSDL but when I use …
0
votes
2answers
28 views
Response.AddHeader
why Response.AddHeader is used?
