Submit Your Question




Jadoo3 Tv another scam in Jadoo Tv 1

So now Jadoo Tv launched Jadoo3? I mean are you kidding me...really. enough is enough, somebody needs to put an end on this non sense worthless box, they only have 1 or 2 GOOD Live channels which are available in all versions of Jadoo Tv (1 & 2). They need to know Jadoo Tv is not APPLE iPhone, its a garbage box, so releasing new versions means NOTHING. They just want your money with same features and channels crap.

Continue Reading & Comment >>>


shava tv channels in Shava Tv

I took few screens of Shava tv today (october, 2012). You can see how the Menu on Shava Tv looks like and few provided channels.


please note, I could not capture all the shava channels after the scrollbar, there is a sports category too for Cricket fans, if you want this box to watch any other sports besides cricket, then please dont buy. there is arabic & bengali category as well.

if you need to see more screens then let me know.

Thanks

Continue Reading & Comment >>>


Website to watch Pakistani Dramas in Desi Websites
Here is a nice website, where you can watch Desi Drama's online.

http://www.dramasonline.com/

Do you know any website? please share.



Thanks, and please share below.

Continue Reading & Comment >>>


Desi Channels on Apple Tv or PC in Apple Tv

Do you want to enjoy desi channels on your Tv,iPhone/iPad or PC? Then guess what, you can do it ABSOLUTELY FREE. you dont need to buy jadoo tv or shava tv or anything, simply watch them on PC OR buy a Apple Tv & watch on TV, OR enjoy them on ipad/iphone.

In order to watch desi channels on your Apple Tv (Which connects with TV), Computer, iPhone, iPad or iPod you need to install a software called XBMC, once installed you can DO many things with it., Like watch Live Tv, recorded tv shows, sports, movies & much more.

For Your Apple Tv / iPhone or iPad you have to make sure your Apple product is jailbroken and you have Cydia installed. for PC you can simply install the software and you are good to go.


Step 1: Install XBMC

Pc/Mac users     : Download XBMC from http://xbmc.org/download/
iPhone/iPad users: Download From Cydia (http://wiki.xbmc.org/index.php?title=How-to:Install_XBMC_on_iPad/iPhone/iPod_touch)

Step 2: Install LiveStreams Add-on


To get live pakistani and indian tv channels . Install livestreams addon from the following link
 
http://forum.xbmc.org/showthread.php?tid=97116

After you have downloaded the ZIP file from url above. Start XBMC, Go to (System > Settings > Addons), select Install from Zip File, browse to the file you downloaded from above URL. Now when you go to Videos > Add-ons you should see LiveStreams Add-on there.


Next (Screenshots given below)
 

1) Go to [https://www.dropbox.com/sh/5ntb8fo7f67zaee/VqgINpBCyO] & Download File(s)
2) Go to livestreams (Under Videos > Addons), Right Click it and choose settings. Source Type "File"
3) Click "Add File"
4) Select the downloaded file(s)  from your PC


After adding File(s) go to LiveStreams and choose the Channel you want to play:)

in Next article, I will write how to Add on-demand media (Drama's, Tv Serials etc), Movies & Sports channels.

Any questions please post below.

Thanks

below are few screens of the steps provided above....


 










Thanks for reading.

Continue Reading & Comment >>>


Simple ASP.NET CAPTCHA Tutorial in Asp.Net

I will show you today how to create a ASP.NET Captcha control without using any HTTP HANDELRS or what so ever. you can easily plug it into your web pages.

All you need to do is Create a ASPX page, that ASPX page will have a content type of image/jpeg, then within the code-behind file of that asp page we will be using system.drawing namespace to create a dynamic image.

System will generate 2 Random numbers, and then it will store the result of these 2 numbers into a Session Variable.

For Example

a = 2 + 3 (where 2 and 3 are 2 random numbers)

Session("Answer") = 5

then we will create a image using System.drawing namespace with the text " 2+ 5 = " within it.
We will store the result into a session variable, so later on our webpage we can use this session variable to compare with what user types.

Lets see the code of Captcha.aspx:

Imports System.Drawing

Partial Class Captcha
    Inherits System.Web.UI.Page

 

    Private Sub returnNumer()

        Dim num1 As New Random
        Dim num2 As New Random

        Dim numQ1 As Integer
        Dim numQ2 As Integer
        Dim QString As String


        numQ1 = num1.Next(10, 15)
        numQ2 = num1.Next(17, 31)

 

        QString = numQ1.ToString + " + " + numQ2.ToString + " = "
        Session("answer") = numQ1 + numQ2


        Dim bitmap As New Bitmap(85, 35)
        Dim Grfx As Graphics = Graphics.FromImage(bitmap)
        Dim font As New Font("Arial", 18, FontStyle.Bold, GraphicsUnit.Pixel)
        Dim Rect As New Rectangle(0, 0, 100, 50)

        Grfx.FillRectangle(Brushes.Brown, Rect)
        Grfx.DrawRectangle(Pens.PeachPuff, Rect) ' Border
        Grfx.DrawString(QString, font, Brushes.Azure, 0, 0)

 


        Response.ContentType = "Image/jpeg"
        bitmap.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg)


        bitmap.Dispose()
        Grfx.Dispose()

 

    End Sub

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load


        Call Me.returnNumer()

    End Sub


End Class

 

So the Page_Load event Generates an Image.

 

now we can use this Page within any aspx page for verification. For Example here is form2.aspx

now you can create a TextBox, have users enter some text into it, and then create a ANSWER button, upon clicking of ANSWER button compare the value of textbox with the Session variable Session("answer"), if both are same then Verification passed.

if you have any questions, please reply to this post.

Thanks for reading

 - Saqib

 

Continue Reading & Comment >>>