asp.net-3.5 is the 3.5 version of web development framework asp.net, part of .Net. It features: ASP.NET AJAX as a part of the runtime, new LINQ data capabilities, improved support for CSS.
Questions tagged [asp.net-3.5]
1125 questions
0
votes
2 answers
ASP.NET: Help button
net APPLIATION dashboard, i need to provide help icon on the screen. For that i have few option as follows
I can use AJAX modal popup and register usercontrol having help content and show it on modal popup control on click of help button
I can use…

Hemant Kothiyal
- 4,092
- 19
- 61
- 80
0
votes
1 answer
How to add new reference programmatically in c#?
I want to add a reference of the dll files programatically in C#.I’m facing a scenario, to convert the list of project from framework 1.1 to framework 3.5. while converting this, the framework 3.5, shows some absolute methods and I need to convert…

Saravanan
- 11,372
- 43
- 143
- 213
0
votes
1 answer
Deployment ASP.NET website: Why *.msi required if setup is there?
I have made website deployment project for ASP.NET 3.5 website. After build i have found two setup 1. MyApp.msi and 2. MyApp.setup.
At deployment PC when i just copy and paste only setup file it will prompt error message for finding msi.
After copy…

Hemant Kothiyal
- 4,092
- 19
- 61
- 80
0
votes
2 answers
QueryString Using in Asp.net
i am using query string method to pass the value form one page to another.
the code is Response.Redirect("~/Default.aspx?FirstName=" +Server.UrlPathEncode(TextBox1.Text) + "&LastName=" +TextBox2.Text.Replace(" ","%20") + ""); but the value is not…

Ankur Gupta
- 933
- 3
- 15
- 27
0
votes
1 answer
AlternateTemplate is not working for Listview
I modified Listview as per my need,but now is not working, in means, its showing row with different color but repeating same data. And then coming next data, againg its repeating and going on.... Here I am lisitng my code.
for Example,
1
1…

Hakoo Desai
- 185
- 1
- 4
- 18
0
votes
1 answer
Upgrade website from ASP.Net 3.5 to 3.5 sp1
Is there anything special that needs to happen to a 3.5 web.config file to take advantage of new features in sp1?

Ely
- 3,200
- 1
- 21
- 18
0
votes
1 answer
Url Routing working on localhost but Not on server
I uses asp.net 3.5 for buiding my application,
I use URL routing in it and it works fine in my local host
In my web.config file i do the following setting

Vishwajeet
- 1,575
- 2
- 19
- 35
0
votes
5 answers
Database row not updating via GridView update
I have a GridView which has the property:
OnRowUpdating="GridViewRowUpdateEventHandler"
Within the GridView, I have the following control:
…

oshirowanen
- 15,297
- 82
- 198
- 350
0
votes
2 answers
Dropdown in dataview
In my GridView, I have the following columns:

oshirowanen
- 15,297
- 82
- 198
- 350
0
votes
2 answers
Adding dropdowns to each row in a column of a dataview
I have a dataview with the following columns:

oshirowanen
- 15,297
- 82
- 198
- 350
0
votes
1 answer
Changing normal values in dataview
I have a dataview with some columns:

oshirowanen
- 15,297
- 82
- 198
- 350
0
votes
2 answers
compare two stringbuilders usng C#
Hi i have two string builders s1 and s2. I am assigning orders to that stringbuilder using comma separator. I want to compare two string builders. I want to know that all the orders in s1 are in s2 as well. If not i want know which order is missing…

Philly
- 251
- 2
- 5
- 22
0
votes
1 answer
ASP.NET Application object loses values
I have a webpage with 1 label and 2 buttons. One button does a postback generates a random squence of numbers, saves it to the Application object, and calls a method which gets the list from the Application object and writes them to the label. The…
Jerry
0
votes
2 answers
Percentage in maskedTextBox display improperly
I'm trying to display a percentages in a MaskedTextBox the string being passed in its "40.99" but when it displays on the form it is "409.9%".
populating value
if (_person.Percentage != null)
maskedTextBoxPercentage.Text =…

Antarr Byrd
- 24,863
- 33
- 100
- 188
0
votes
1 answer
how do i get the min from a linq to dataset query
Hi i have a linq query below
var Free = (from row in
dt.AsEnumerable()
where row.Field("AppointmentType")
== "FreeTime"
select new{ row.Field("BookedDate")
…

kevinw
- 103
- 1
- 2
- 12