Showing posts with label based. Show all posts
Showing posts with label based. Show all posts

Monday, March 26, 2012

multiview refresh inside updatepanel

i've a gridview based on the dropdownlist and multiview with two views based on the gridview selection.

when i change selection in my dropdownlist without click on my gridview, the information in the multiview in view1 and view2 is refreshed, but once i change the selection in my gridview the refresh happend only in the active view not in the other.

help me please

S.O.S ...Sos...sos...helpConfused


thanks to all for your reply!!!Wink.

i've found the solution it's working but i'm sure there is an other way and better.

when i change the selection in the gridview i refresh the sql connection.

and when i set the view1 or view2 to active i refresh the connection too.

gridveiw1.datasourceid="sqlconnectin1".

Saturday, March 24, 2012

need help about socket programming

hello ,

I tried to create client-server based web site including two page, webserver page is behaves as a server and webclient page as a client of this server..

I try to listen and accept to all clients wants to connect to the server when server page is loading.. but while it begun to listening for client pages, execution of server goes to slow then my server page couldn't open..

I also checked this codes in vb.net ad c# net ,it work correctly.

do you have any idea where can I download a good socket connection sample for asp.net?. I found code written for vb.net or c# desktop applications but I am not able to run this codes in asp.net..

Thank you in advance

im looking for something similar, have u had any luck?

hi aal27

i couldn't find anythin,g i thougth there is no chance to todo this...

send me a message if you find something useful

Wednesday, March 21, 2012

Need Help on AJAX

Hi Friends,

I am new for ASP.NET technology though i am not new in IT Field. I used to work out on Desktop Based Application.My company deals in ERP & SAP and now switching to Web development also.

Tell me how should i get the step by step help to learn the AJAX. I know little bit of ASP.net. I tried one example of Animation through Ajax Control Toolkit.

But I am facing the problem in animation of this control. as the intellisence is not comming in code pane. and there is no help how to use these controls. Only there is an example. but don't have any explanation on properties and attributes of these controls.

Is there any help to come out of it....Geeked

Manish

check this linkhttp://asp.net/ajax/documentation/live/InstallingASPNETAJAX.aspx

Basicaly you need to install ASPAJAXExtSetup.msi. Once installed, you open Visual Studio, click File new website, and then u'll have the option to select between the templates "ajax enabled website". Then you copy paste samples from the control toolkit sample , and it works right away. very simple.


This is ok for me. I know this. and I am trying to use animation control of AJAX. Let us take an example.

<cc1:AnimationExtenderID="OpenAnimation"runat="server"TargetControlID="cmdSubmit">

<Animations>

<OnClick>

<SequenceAnimationTarget="cmdSubmit">

<StyleActionAttribute="overflow"Value="hidden"/>

<ParallelDuration=".3"Fps="15">

<ScaleScaleFactor="0.05"Center="true"ScaleFont="true"FontUnit="px"/>

<FadeOut/>

</Parallel>

<StyleActionAttribute="display"Value="none"/>

<StyleActionAttribute="width"Value="250px"/>

<StyleActionAttribute="height"Value=""/>

<StyleActionAttribute="fontSize"Value="12px"/>

<OpacityActionAnimationTarget="cmdSubmit"Opacity="0"/>

<EnableActionAnimationTarget="cmdSubmit"Enabled="true"/>

</Sequence>

</OnClick>

</Animations>

</cc1:AnimationExtender>

See the Bold Text. I have taken this from example given inhttp://asp.net site. But my question is how should i know the the behavior of these keywords like fade opacityaction, StyleAction, Seqence, e.t.c. Because I don't like to do copy-paste operation. I would like to learn these keywords. As these keywords belongs to Animation Control only. It may varry from control to control. Then how should I guess other keywords which is used in other AJAX Controls.

Hope This will help u to understand me...