0
votes
1answer
26 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
42 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
20 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
2answers
27 views
Response.AddHeader
why Response.AddHeader is used?
0
votes
2answers
99 views
How Do I Get a Dynamic Control’s Value after Postback?
I have a listview that adds controls in the ItemDataBound Event. When the postback occurs, I cannot find the new controls. After a bit of research, I found that ASP .NET needs th …
0
votes
6answers
127 views
How to dynamically create CSS class in JavaScript and apply?
I need to create a CSS stylesheet class dynamically in JavaScript and assign it to some HTML elements like - div, table, span, tr, etc and to some controls like asp:Textbox, Dropdo …
0
votes
2answers
78 views
“DateTime.Now” - why does it return GMT?
I am running on a Win2003 server, TimeZone set to (GMT -06:00) Central Time. I am programming with VS.NET 2005, f/x 2.x. When I execute the following code I do not get the expect …
0
votes
2answers
66 views
Using a line of code from codebehind in actual HTML page
I have a database connection which takes an input from the querystring to access the appropriate data. However i have now upgraded things by encoding this data. As a result i now n …
0
votes
4answers
49 views
HOW TO MAKE localization?
hi all
I have a question about localization
how can i do localization lets say that i have a dropdown list
that holds the available languages: English,french and arabic
and I have …
0
votes
1answer
33 views
Why is ViewState lost when a control’s property is modified during its parent’s Control.Render method?
I have code like the following in a UserControl:
Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)
If someCondition Then
childControl.Enable …
0
votes
2answers
25 views
GridView that toggles percentages of counts
I am using a SqlDataSource that returns a table of raw counts. One of these columns is the "total". I would like to give the user the ability to show these counts as a percentage o …
2
votes
9answers
93 views
What is the best tool for Test driven Development using asp.net 2.0?
We are using Asp.Net 2.0 and planning to move to TDD so that middle tier can be developed and tested while others in the team take care of UI and DataBase area.
Can anyone kindly …
1
vote
4answers
78 views
A minimal MVC setup for ASP.NET 2.0
I have to migrate a web application I made with ASP.NET MVC to a regular Visual Studio 2005 ASP.NET Web Forms based website.
I've looked at things like MonoRail, but it's too diff …
0
votes
3answers
53 views
.net templates which page am I on?
Hi,
I'm curious to know that using .net 2.0 with a master page if there is a way that I can pick up what page I am on so that i can use it to style a tab?
My master page has a na …
1
vote
3answers
33 views
How to upload an image when user selects a file in FileUpload control like in gmail?
Hi all,
I need to upload image or file when user selects that file like in gmail attach file without any other asp:button . What I mean is there shouldn't be any other button exce …
