For issues relating to development with ASP.NET, version 2.0.

learn more… | top users | synonyms

0
votes
1answer
35 views

page.Validate() method does not works perfectly

I'm working with nested grid views. I have one grid view like service section which have two another section like it's features and charges. This two grid are nested child grid of service section ...
0
votes
1answer
36 views

Why is the DataItem property null for this DataGridItem here?

Problem I have a ButtonColumn to edit a row defined like this: <asp:ButtonColumn DataTextField="job_code" ButtonType="LinkButton" HeaderText="Job Code" ...
0
votes
1answer
17 views

Why isn't the ClientIDMode being honored here?

I have an ASP.NET 2.0 web application, and on one of the pages I have a div defined like this: <asp:Panel runat="server" ID="pnlAddJobCode" Visible="false" ClientIDMode="Static"> and it's ...
0
votes
1answer
34 views

Update in MicrosoftAjax.js is not reflect in my local Visual Studio 2005

I got java script error: SCRIPT5022: Sys.ArgumentOutOfRangeException: Value must be an integer. Parameter name: y Actual value was 326.739990234375. When I testing application in IE 10 ...
0
votes
1answer
77 views

IE10 and ASP.NET 2.0 Button control

I'm Still stuck cause of IE 10. On page_load I tried to set : Button1.Enabled = false; and its not working only on IE10, on other browsers it works amazing. Edit: I have already updated ...
0
votes
0answers
94 views

how to retrive textbox value from grid view at RowUpdating command

i have grid view that show features of service. i bound all features in grid view and Inserting,Updating,Deleting with this criteria Click here. After running this project i can not updating existing ...
0
votes
5answers
81 views

Auto-trimming whitespace in form inputs

I have a form with a number of inputs, each of which needs to be Trimmed before they are processed. It would be laborious - and not very robust - to trim these on each use of the value as each is used ...
0
votes
2answers
139 views

Loading Data in dropdown list fastest

I have to load data into some dropdownlists which includes loading data into datatables through oracle stored procedures.But this make my page loading slow after each postback. Which technique I ...
0
votes
1answer
26 views

Bypass Page.VerifyRenderingInServerForm

I am trying to render a Wizard control to a HTML string on the click of a Button (using Control.Render). I am already disabling event validation with the following, which works fine and enables me to ...
0
votes
0answers
17 views

Failure sending mail in asp.net2.0

I have written the following code for sending mail.But i am getting error as failure sending mail.I can send mail when the network host is smtp.gmail.com. Heres the code MailMessage mm = new ...
0
votes
0answers
124 views

ASP NET 2.0, Windows Authentication & Users in IIS7.5 - How are new users added?

I have an old asp net 2.0 app that I am moving from Windows Server 2003 with IIS 6 to Windows Server 2008 R2 with IIS 7.5. There are 5 users who are auto authenticated through Active Directory (AD) ...
0
votes
1answer
330 views

RequiredFieldValidator client side validations do not work on IE 10

All my webforms using RequiredFieldValidator, RegularExpressionValidator and ValidationSummary are not working on IE 10. It is working fine on any other browsers. It is strangely doing postback which ...
0
votes
0answers
16 views

How to access controls inside usercontrol and shows alert if the control is empty in webpage?

I am using a usercontrol which has two textboxes named txtUserName,txtPassword and a button named btnSubmit.I am using this usercontrol in my webpage.I want to show alert message in the webpage if ...
0
votes
3answers
52 views

Date format sorting issue

I am using asp.net 2005 on my system and creating a application. I have an issue with date format sorting. I have a table including three fields like "user name, date time, visit page". My records ...
0
votes
1answer
196 views

Cannot make a call to Page WebMethod using jQuery Ajax?

I am currently trying to develop a chat applicaiton in asp.net2.0 and requires me to make a call to aspx Page Webmethod.My issue is that i cannot make a call to the page webmethod. Not showing any ...
1
vote
1answer
148 views

Get and cast Masterpage UserControl from Content Page to access specific UC Property

I have a MasterPage (MyBoxx.Master) referencing 2 usercontrols : <%@ Master Language="C#" AutoEventWireup="true" CodeFile="MyBoxx.master.cs" Inherits="MyBoxxMaster" %> <%@ Register ...
1
vote
1answer
55 views

How to achieve the below code in asp.net2.0?

Since i am using asp.net2.0 when i used the below class i am getting the following error. Error 1 : The type or namespace name 'var' could not be found (are you missing a using directive or an ...
0
votes
0answers
10 views

How to show duplicated address using googlemap in gridview?

I have a scenario where user enters an address and click enter.I want to fetch all the address using gogolemap Api and show it in gridview,if there is multiple address starting with the same address ...
1
vote
1answer
131 views

The type or namespace name 'var' could not be found in asp.net 2.0

I am using Asp.Net 2.0.I was trying to built an application on how to build a Store Locator ASP.NET Application Using Google Maps API.When I am trying to use "var" in the pplication it is giving error ...
0
votes
0answers
57 views

AjaxPro Framework hitting timeout function?

I am trying to develop a chat application.I am using Asp.Net2.0 and vs2005.Iam using AjaxPro Framework for getting asynchronous calls to the server side. My problem is when i send message im getting ...
0
votes
2answers
1k views

Avoid displaying of previous pages after logout ASP.NET C# 2.0 [duplicate]

I am having problem with logout. After Logging out of the application also, when a user presses browser back button those secured pages are displaying. And also the page load event is not firing for ...
2
votes
0answers
281 views

how to bind image with specific height and width in repeater control

i have repeater control that have specific template for my web site jquery slider. how ever i have table name tbl_Slide_master that have slide details to show. this table have two columns like ...
1
vote
1answer
54 views

Jquery ajax not getting called in asp.net2.0?

I am using Asp.Net 2.0.I am trying to learn webservice and call that webservice using jquery ajax method The problem is jquery ajax is not working properly and i could not find out where i have gone ...
6
votes
1answer
881 views

IE10 “__doPostBack is undefined” solutions do not work

I have a web server running Windows Server R2 Standard, and am experiencing the issue described in this blog post: ...
1
vote
1answer
65 views

SelectedIndexChanged not firing

My problem is that SelectedIndexChanged of ddlObra control is not firing, but when I erase the Page.ClientScript.RegisterOnSubmitStatement of Page_Load, everything works fine. I can't understand this ...
0
votes
0answers
84 views

Comparing two lists in asp.net

I have application called STAT tracker where it is maintaining the company statutory activities like service tax, income tax and etc which are created yearly, monthly, quarterly and half yearly. ...
0
votes
0answers
54 views

How to change version numbers in web.config using Nant

I've upgraded existing asp.net 2.0 website to use enterprise library 5.0. I am trying to build Nant script to deploy the application. Can anyone suggest how to change version numbers from 4.0 to 5.0 ...
0
votes
0answers
126 views

asp.net debug compilation = false throws javascript error

i am getting Javascript error after i modified the web.config [debug compilation = false ] i have embedded javascript in my code using webResource [assembly: WebResource("ClientModels.js", ...
1
vote
1answer
45 views

Two different version of .net on server

Is it possible to have two different versions of the .net framework on the web server then have one Virtual directory use the 2.0 version and another virtual directory use the 4.0 version in the ...
0
votes
3answers
485 views

Operating system error code 5(Access is denied.) when bulk insert

I have an ASP.NET application on Server A and a SQL Server on Server B. When running the appliction it calls a stored procedure. This procedure try to bulk insert from a file from a shared folder on ...
0
votes
0answers
72 views

How to FindContol gridview control which is in ItemTemplate of accordion control

I have a accordion control which is having gridview control in its ItemTemplate. Now i want to find control Imagebutton which is in ItemTemplate of gridview.
0
votes
2answers
41 views

https connection and ajax request

I have a site which is on HTTPS. There I user jQuery AJAX to access webMethoid from the server. Is this webMethod called via HTTPS and is it safe?
2
votes
1answer
153 views

Select single node with same attribute name in .NET 2.0

My xml looks like <article> <article-id pub-id-type="local">ABC</article-id> <article-id pub-id-type="external">XYZ</article-id> </article> I can do the ...
0
votes
1answer
109 views

Using ch.ethz.ssh2 in a C# application

I'm adding SSH command execution and file upload to an existing application. After comparing different free and licensed libraries, I decided to use http://code.google.com/p/ssh2-net/ because it seems ...
0
votes
2answers
54 views

How to reference XML data that isn't bound to a repeater

C# newbie asking, so if the question is stupid or the answer is really obvious, it's probably because I don't fully understand how XmlDataSource works. Given the following XML file ...
0
votes
1answer
128 views

Button not fired in asp.net 2.0

This is really driving me nut, the page has always been working fine but for unknown reason it stops firing button event! any button's event! All I can recall is I upgrade browser to IE8, but the even ...
0
votes
2answers
472 views

Sending an Excel file to the client

I am trying to send an Excel file to the client of an ASP.Net web page, but it doesn't work. When the user clicks a button, some data from our server-side database is formatted, put in an Excel file ...
0
votes
1answer
122 views

which of following code is better performance wise in ASP.NET 2.0

I have been using a datatable to display some fields from SQL 2005 database table in my website which is built in ASP.NET 2.0. lately its been throwing timeout errors saying all the max connection ...
0
votes
1answer
125 views

Timeout connection error while executing this piece of code in ASP.NET 2.0 and C#

I am using the below code to grab the page tiles, meta description from database created in SQL Server 2005. My site is built with ASP.NET 2.0 and C#. On page_load I am executing this code: string ...
1
vote
1answer
336 views

IIS 7.5 URL Rewrite rule higher priority than folder

I have this rule in web.config. <rule name="RewriteSourceCategorySuburb" stopProcessing="true"> <match url="(news)$" /> <conditions logicalGrouping="MatchAll" ...
0
votes
0answers
114 views

IIS Script Time-out not reading the value programmatically

the ASP (classic) page is reading huge number of records from a SQL Server Table which takes a while so we need to set the Script time-out to at least 300 seconds or 5 minutes. the issue is when I ...
0
votes
4answers
1k views

Check asp.net textbox value against multiple if conditions

I have my website built in ASP.NET 2.0 and C#. I have textbox called tbCode where a user enters a code. I am trying to check that entered value against multiple values in the code behind on a button ...
0
votes
0answers
24 views

asp.net 2.0 to asp.net 4.0 publish is not present

I have upgraded my website from ASP.NET 2.0 to ASP.NET 4.0 using visual studio 2010 Express. It is upgraded and build run properly perhaps there is no option to Publish in this project. Am I missing ...
0
votes
1answer
119 views

ASP.NET: Ajax UpdatePanel Issue

I am supposed to update the progress & display the corresponding message on the client side while the function is still under execution at server side. How can I achieve this? The function looks ...
0
votes
2answers
134 views

KeyNotFoundException when a Key with the requested value exists in VB.NET ASP.NET 2.0 Dictionary

The ValueList variable is defined as Dictionary(Of String, String) The watch values captured show the data (tmpData) has a value of "1". The ValueList is defined such that the replacement value for ...
0
votes
2answers
79 views

Web application page load

I have a listbox and two buttons that change the listitems in that listbox. They are in a wizard and when I click on the buttons, I do not want the page to load. I want to stay in the same page ...
0
votes
2answers
615 views

Compilation error only in server: The base class includes the field ‘MyControl_1′, but its type (MyControl) is not compatible (ASP.MyControl_ascx)

I'm desperate. We have a little project in ASP.NET (webforms) with Framework 2.0. I've made a little maintenance over a UserControl (ASCX). I'm my development machine works perfect but when I upload ...
0
votes
1answer
238 views

Create a web service that is hosted on IIS 6.0 and Asp.net 2.0

I need to create a web service that will be hosted by a website running IIS 6.0 and Asp.net 2.0. I have never created a web service before now. I have Visual Studio 2008. What options do I have ...
0
votes
0answers
49 views

Different soapServerProtocolFactory for one [WebService] class

I'm trying to implement a Server-Side Asynchronous Web Method, and it works great with the normal .NET 2.0 web services stack. However, I need to integrate it into our existing, WSE 3-based web ...
1
vote
2answers
377 views

ASP.NET 2.0, SQL Server Express 2008, Sync Framework 1.0 C# Simplest Scenario Example

Good Day Everyone, I know, the versions I am talking about are rather obsolete by now but that's the tools I am stuck to work with at the workplace. This is my first question on StackOverflow, and I ...

1 2 3 4 5 18