No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Hi Dear, Please fins the changes in you storedprocedure, [code]Create Proc [dbo].[spXSelect] @B int=null as Begin If @B is Null Begin Select Ident_Current('X') as 'Identity' Select D,E From X End If @B is Not Null Begin Select D,E From X where B=@B End End[/code]
Hi Dear, Yes you can. Silverlight is extranal componet to implement the WPF. Thanks & Regards Jaiswar Vipin Kumar R.
Hi Dear, ASP.NET 2.0 has introduced many new promising controls and TreeView is one among them. There has always been a requirement for Tree Control in earlier versions and it was quite hard to manage them with either the third party controls or the lighter version - IE Webcontrols. Thanks …
Hi dear, Please find the code fro scrllable DaTaGridView [code=html]<div style="width:100%; height:300; overflow:auto;"> <asp:GridView ID="GridView1" runat="server"> </asp:GridView> </div>[/code] GridView inside Panel Control To create GridView scrollbars with a little help of Panel control, use this code: [code=asp.net]<asp:Panel ID="Panel1" runat="server" ScrollBars="Both" Height="300" Width="100%"> <asp:GridView ID="GridView1" runat="server"> </asp:GridView> </asp:Panel>[/code] And answer of …
Hi Dear, AS per my under standing. 1) When .aspx page do commumcation with database layer via business layes. 2)If Database storedproceure return some thing as per business logic if it valid then you want execute the .vb page whcih created in the VB.NET Please refer the my comment.. 1) …
The End.
jaiswarvipin