or
<
httpHandlers
>
<
add
path
=
"Telerik.Web.UI.DialogHandler.aspx"
type
=
"Telerik.Web.UI.DialogHandler"
verb
=
"*"
validate
=
"false"
/>
<
add
path
=
"Telerik.Web.UI.WebResource.axd"
type
=
"Telerik.Web.UI.WebResource"
verb
=
"*"
validate
=
"false"
/>
</
httpHandlers
>
<
handlers
>
<
add
name
=
"Telerik_Web_UI_DialogHandler_aspx"
verb
=
"*"
preCondition
=
"integratedMode"
path
=
"Telerik.Web.UI.DialogHandler.aspx"
type
=
"Telerik.Web.UI.DialogHandler"
/>
<
add
name
=
"Telerik_Web_UI_WebResource_axd"
verb
=
"*"
preCondition
=
"integratedMode"
path
=
"Telerik.Web.UI.WebResource.axd"
type
=
"Telerik.Web.UI.WebResource"
/>
</
handlers
>
DECLARE
@ContactNum NVARCHAR(50)
SET
@ContactNum =
'555-5555 Office'
DECLARE
@Priority
int
SET
@Priority = 1
UPDATE
Physician_Contacts
SET
ContactNum = @ContactNum
From
Physician_Contacts
WHERE
Priority = @Priority
SELECT
A.Phys_Name, E.Specialty, A.Clinic, A.Office_No, A.Residence_No, A.Fax_no, A.Beeper_note,
b.ContactNum, c.ContactNum
as
Contactnum2, d.ContactNum
as
Contactnum3
FROM
PhysicianMainList
as
A
left
join
Physician_Contacts
as
B
on
A.Phys_Staff_ID = B.Phys_Staff_ID
and
b.priority = 1
left
join
Physician_Contacts
as
C
on
A.Phys_Staff_ID = C.Phys_Staff_ID
and
c.priority = 2
left
join
Physician_Contacts
as
D
on
A.Phys_Staff_ID = D.Phys_Staff_ID
and
d.priority = 3
left
join
WTH_Specialties
as
E
on
E.abbr = A.Specialty
ORDER
BY
A.Phys_Name
I've used RadAjaxManager to do this, when press the button, radgrid and radbutton are updated as well, but the second button starts to do async postback..
How can i solve it?
Thanks