Guess programmer was hungry thats why he "ate" the exception :D
Always Keep Smiling. Yours Pankaj Nikam
Guess programmer was hungry thats why he "ate" the exception :D
Always Keep Smiling. Yours Pankaj Nikam
Using Repeater
is certainly a very good choice. I am happy that it worked for you :) I have one more suggestion - if you are having only read-only records i.e. you only view them, then consider using SqlDataReader
object instead of the DataSet
as it is fast - read-only - forward only. Happy to help you :)
Always Keep Smiling. Yours Pankaj Nikam
Richard MacCutchan wrote:
Why not? You can choose any number that allows you to complete your work.
Exactly... It suited me... :)
Always Keep Smiling. Yours Pankaj Nikam
Extend the session timeout in the webconfig by
Always Keep Smiling. Yours Pankaj Nikam
Sentenryu wrote:
Of course they have! they know that the data he entered took the wrong path and ended up in a black hole! ;-P
:laugh: :thumbsup:
Always Keep Smiling. Yours Pankaj Nikam
In addition to answer above, CBT Nuggets also has the latest ASP.NET framework covered :) The best way to learn any technology is to practice it :)
Always Keep Smiling. Yours Pankaj Nikam
You need to handle OAuth authentication (the longer way) or use the components available like for example SocialAuth.NET available here
Always Keep Smiling. Yours Pankaj Nikam
Same goes for me... :thumbsup:
Always Keep Smiling. Yours Pankaj Nikam
OK here is the deal. I have a gridview and I have some items in it. I have checkboxes on the extreme left (the first column) which enables the user to make selection. Now the thing is that I have achieved a way to get the row on which it is selected and I turn the row to a different color lets say orange. Now I want to make sure that the when the user selects another checkbox, the rest of the checkboxes should automatically be deselected. Now I know you will suggest me to use a radio button instead however I wish to do it with checkbox itself... Any kind of help will be appreciated... OK I agree this is a strange question but strange things are the best way to learn something. And this is not a homework question. I am banging my head to get this solved... :D
Always Keep Smiling. Yours Pankaj Nikam
I want to create a theater management system in which I have to dynamically add the seats as present in the table of database. Imagine a theater where there are seats from Row A to J and seat number 1 to 10. I want to make sure that if the seat is booked, I have to show it Red, if its vacant, I have to show it in green and if its disabled, it must be grayed out. I also want to create the table for such layout in Silverlight... Any suggestions?
Always Keep Smiling. Yours Pankaj Nikam
I have a accordion control on which I have databound two properties from the database. One is Location and other is theatre. When the page loads, the accordion shows different locations for each of the theatres. Actually I want only a single location for the theatres which come under that theatre part. The screen shot for reference is as follows http://lh4.ggpht.com/_rZz85WGZ4Vg/S5UhufYlUZI/AAAAAAAAAWQ/zXZiG4HTV9o/myScree.JPG[^] The XAML code for the accordion is as follows: <layoutToolkit:Accordion HorizontalAlignment="Stretch" Grid.Row="1" VerticalAlignment="Stretch" Grid.RowSpan="2" Margin="0,0,0,40" BorderBrush="{x:Null}" x:Name="theatresAccordian"> <layoutToolkit:Accordion.ContentTemplate>< <DataTemplate> <TextBlock Text="{Binding Name}"/> </DataTemplate> </layoutToolkit:Accordion.ContentTemplate> <layoutToolkit:Accordion.ItemTemplate > <DataTemplate> <TextBlock x:Name="_headertext" Text="{Binding Location}"/> </DataTemplate> </layoutToolkit:Accordion.ItemTemplate> </layoutToolkit:Accordion>
I have tried searching search engines but was in vain :(
Always Keep Smiling. Yours Pankaj Nikam
modified on Monday, March 8, 2010 11:23 AM
I had seen that control however this is not what I wish to achieve. :)
Always Keep Smiling. Yours Pankaj Nikam
I want to make a Silverlight application, which has a conveyor belt style scrolling list (which has thumbnails of movies) and when one moves the mouse over the thumbnail, it should pause the conveyor belt. When one clicks a particular thumbnail, the movie should get played. I also want to make this control dynamic (Movies from XML or Database and thumbnails can be static images). I need the right directions to get started with it... :) I tried web search but it didn't helped me a lot.
Always Keep Smiling. Yours Pankaj Nikam
Hmm... interesting... :)
Always Keep Smiling. Yours Pankaj Nikam
What will happen if you put a
public static void Main()
inside a class and why would you do it ?
Always Keep Smiling. Yours Pankaj Nikam
Try this http://sourceforge.net/projects/itextsharp/[^]
Always Keep Smiling. Yours Pankaj Nikam
DaveyM69 wrote:
You now have userControl11.Button1Clicked and userControl11.Button2Clicked events available in your host form like any other control's events.
Thank you very very much :)
Always Keep Smiling. Yours Pankaj Nikam
Thanks for the Answer. Can you tell me how to expose the button ? Do you mean that I should add the button on the control at runtime ?
Always Keep Smiling. Yours Pankaj Nikam