Click here to Skip to main content
15,903,012 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: A free hosting of ASP with Mysql Pin
abbd14-Dec-08 9:01
abbd14-Dec-08 9:01 
GeneralRe: A free hosting of ASP with Mysql Pin
Paul Conrad14-Dec-08 9:08
professionalPaul Conrad14-Dec-08 9:08 
GeneralRe: A free hosting of ASP with Mysql Pin
Christian Graus14-Dec-08 9:35
protectorChristian Graus14-Dec-08 9:35 
GeneralRe: A free hosting of ASP with Mysql Pin
abbd14-Dec-08 10:00
abbd14-Dec-08 10:00 
GeneralRe: A free hosting of ASP with Mysql Pin
Christian Graus14-Dec-08 10:15
protectorChristian Graus14-Dec-08 10:15 
GeneralRe: A free hosting of ASP with Mysql Pin
Paul Conrad14-Dec-08 10:59
professionalPaul Conrad14-Dec-08 10:59 
Question'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine" Pin
coolsatty14-Dec-08 6:10
coolsatty14-Dec-08 6:10 
AnswerRe: 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine" Pin
Christian Graus14-Dec-08 8:22
protectorChristian Graus14-Dec-08 8:22 
QuestionHow to full screen at startup Pin
Girish48113-Dec-08 20:18
Girish48113-Dec-08 20:18 
AnswerRe: How to full screen at startup Pin
Christian Graus13-Dec-08 22:24
protectorChristian Graus13-Dec-08 22:24 
GeneralRe: How to full screen at startup Pin
Girish48114-Dec-08 1:30
Girish48114-Dec-08 1:30 
GeneralRe: How to full screen at startup Pin
Christian Graus14-Dec-08 8:23
protectorChristian Graus14-Dec-08 8:23 
GeneralRe: How to full screen at startup Pin
Girish48114-Dec-08 20:19
Girish48114-Dec-08 20:19 
AnswerRe: How to full screen at startup Pin
Aman Bhullar15-Dec-08 0:08
Aman Bhullar15-Dec-08 0:08 
Question[Message Deleted] Pin
piyush_patel111113-Dec-08 12:35
piyush_patel111113-Dec-08 12:35 
AnswerRe: How to update data into gridview by using dataset through coding ? Pin
Christian Graus13-Dec-08 14:05
protectorChristian Graus13-Dec-08 14:05 
GeneralRe: How to update data into gridview by using dataset through coding ? Pin
ofekhorizon13-Dec-08 21:38
ofekhorizon13-Dec-08 21:38 
AnswerRe: [Message Deleted] Pin
Christian Graus14-Dec-08 8:22
protectorChristian Graus14-Dec-08 8:22 
QuestionProfile.FullName Issue Pin
laziale13-Dec-08 8:55
laziale13-Dec-08 8:55 
QuestionStatus circle Pin
nour12313-Dec-08 7:04
nour12313-Dec-08 7:04 
AnswerRe: Status circle Pin
Expert Coming13-Dec-08 8:05
Expert Coming13-Dec-08 8:05 
AnswerRe: Status circle Pin
Christian Graus13-Dec-08 10:15
protectorChristian Graus13-Dec-08 10:15 
QuestionAjax not working - still does post-backs [modified] Pin
JFord123413-Dec-08 6:20
JFord123413-Dec-08 6:20 
Hi,

I'm new to AJAX and I've been going crazy trying to figure out what's stopping my controls from updating on the client side rather than just normally sending a post-back.

I have a script manager, and an UpdatePanel which contains a small form and a gridview.
Upon submitting the form, the Gridview should be updated. But it keeps on doing it on the server side.

Here's an edited part of my code:
=================================================================================
<form id="form1" runat="server">
<asp:ScriptManager
ID="ScriptManager1" runat="server" />
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>

<asp:TextBox ID="TextBoxValue" runat="server"></asp:TextBox>

<asp:Button ID="Search" runat="server" CausesValidation="False" Height="22px"
onclick="Search_Click" Text="חפש" UseSubmitBehavior="False" Width="48px" />

<asp:RadioButtonList ID="RadioButtonListDic" runat="server"
RepeatDirection="Horizontal">
<asp:ListItem Selected="True" Text="1234">1234</asp:ListItem>
<asp:ListItem Text="1234">1234</asp:ListItem>
</asp:RadioButtonList>

<asp:GridView ID="GridViewResults" runat="server" CellPadding="4" ForeColor="#333333"
GridLines="None" AutoGenerateColumns="False">

</asp:GridView>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Search" EventName="Click" />
</Triggers>
</asp:UpdatePanel>
<asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1">
<ProgressTemplate>
Searching
</ProgressTemplate>
</asp:UpdateProgress>
</form>
=================================================================

As you can see, I've even tried to specificly make the Search button update.
Also I should mention that I'm using a Masterpage, with no ajax controls.

What am I doing wrong?

Many thanks,
JFord

<div class="ForumMod">modified on Saturday, December 13, 2008 12:27 PM</div>
AnswerRe: Ajax not working - still does post-backs Pin
Christian Graus13-Dec-08 10:13
protectorChristian Graus13-Dec-08 10:13 
GeneralRe: Ajax not working - still does post-backs Pin
JFord123413-Dec-08 11:15
JFord123413-Dec-08 11:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.