User Profile

Collapse

Profile Sidebar

Collapse
krisssgopi
krisssgopi
Last Activity: Sep 22 '12, 12:54 PM
Joined: Apr 28 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • How to get contact emails from user via Hotmail API?

    Hi all,

    I am using Windows Live API for importing contacts. I had followed the documentation provided by Windows Live API. But, am getting the email hashes for the contact list instead of email id. I need to know how to get the email id using email hashes or any other efficient way to get users contact list. Please help me in this regard.
    See more | Go to post

  • krisssgopi
    started a topic FaceBook Graph API
    in .NET

    FaceBook Graph API

    Hi All,

    I like to know how to fetch the users friends email id from facebook graph api. i had followed everything which was given by facebook documentation. I can able to get the users friend list. But,the resulting friend list contains only their name and user_id. i need to get their email_id. i have got the extended permission from the user and i had generated the access token for the same. Please help me how can i get the users...
    See more | Go to post

  • krisssgopi
    replied to Execution of the Program
    Hi Rabbit,

    Thank you for your response... have a nice day
    See more | Go to post

    Leave a comment:


  • krisssgopi
    started a topic Building Social Network Site

    Building Social Network Site

    Hi All,

    I am building the social Network site using asp.net. My doubt is whether we can use Socket Server for building this Social Network Site.
    See more | Go to post

  • krisssgopi
    replied to Execution of the Program
    Hi Rabbit,

    Thank you for your response. I had a doubt on how to determine my coding will take disk space or ram space. please advise me.
    See more | Go to post

    Leave a comment:


  • krisssgopi
    started a topic Execution of the Program

    Execution of the Program

    Hi all,

    I like to clarify the doubt regarding vb.net programming. my question is as follows.
    1. While executing the vb.net program, whether it takes RAM space or Hard disk space.
    See more | Go to post

  • How to retrieve the yahoo contact list using API?

    Hi Team,

    Am really got frustrated. since i have written the coding for getting yahoo contact list using asp.net. After getting the "xoauth_yahoo_g uid" i cant able to retrieve the contact list. Please advise me.

    Code:
      <?xml version="1.0" encoding="UTF-8" ?> 
    - <yahoo:error xmlns:yahoo="http://yahooapis.com/v1/base.rng" xml:lang="en-US">
      <yahoo:description>Please
    ...
    See more | Go to post

  • Hi Buddy,

    Thank you. I can able to understand what you are saying. Above mentioned coding was written in code behind vb page. i have also written business layer and database layer. Shall i know what you are trying to say is to create one more class file and get the parameter from code behind page is it correct. please give me feedback.
    See more | Go to post

    Leave a comment:


  • Hi Buddy,

    below code may help to fix your problem.

    Code:
    ScriptManager.RegisterClientScriptBlock(Me, Page.GetType, "Validation", "function name", True)
    See more | Go to post

    Leave a comment:


  • How can I improve my coding style in the following code?

    Hi Team,

    Please give me a feedback on the below coding. I like to know whether i had improved in writing the .net coding. Thanks in advance.
    Code:
    Imports System.Data
    Imports Offlinemessage
    
    Partial Class Offline_Message_Offline_Message
        Inherits System.Web.UI.Page
        Dim ds As New DataSet
        Dim obj As New Offlinemessage
    
        Protected Sub Button1_Click(ByVal sender
    ...
    See more | Go to post

  • How to allow web services to fetch data from application

    Hi Team,
    Am using two web application and one web service. My doubt is, am sending the dataset from my first application to Web service. After sending the dataset to my web service, i like to fetch the dataset using second application from the web service. How shall i fetch the dataset by using second application. please help me in this regard.

    Note:

    1) sending the dataset from first application to web service....
    See more | Go to post

  • krisssgopi
    started a topic reading a file

    reading a file

    Hi Buddies,

    i am using file upload control to upload the files in asp.net with vb.net as code behind. am storing the files in my local drive. my doubt is, how shall i read those file using asp.net application. please help me.
    See more | Go to post

  • krisssgopi
    started a topic Sending SMS to Mobile Using Asp.net

    Sending SMS to Mobile Using Asp.net

    Hi Team,

    I want to send Message to mobile using asp.net with vb.net as code behind. I am having SMS Service provider URL. Please advise me how shall i proceed it.
    See more | Go to post

  • krisssgopi
    replied to Regarding Sending Mail
    Thank You, i have done it. thanks for your response.
    See more | Go to post

    Leave a comment:


  • krisssgopi
    started a topic Regarding Sending Mail

    Regarding Sending Mail

    Hi Team,

    I am trying to send email using Asp.net with code behind Vb.net. I cant able to send email and it was not throwing any exceptions. Please help me where it was getting hick up.

    Code:
    Try
                message.From = New MailAddress("krisssgopi@gmail.com")
                message.To.Add(New MailAddress("jeganrengasamy@gmail.com"))
                message.IsBodyHtml = False
                message.Priority
    ...
    See more | Go to post

  • krisssgopi
    started a topic Validation in Javascript

    Validation in Javascript

    Hi All,
    I am using java script for validating the textbox in my asp.net page. Validation is working fine but when i click the submit button the empty values are inserting in my database. Please help me how shall i overcome this problem.
    Code:
    function check(id,l)
    {
    var st;
    st=document.getElementById(id).value;
    if(st=="")
    document.getElementById(l).innerHTML="Enter User Name..";
    ...
    See more | Go to post

  • krisssgopi
    replied to Object Require in JavaScript
    Hi Buddy,

    i have tried as you mentioned. But still it was throwing the same error. Since am using master page the child page which inherits the master page. It was working fine in normal asp page. The issue was, when am using master page content place holder. Please help me....
    See more | Go to post

    Leave a comment:


  • krisssgopi
    started a topic Object Require in JavaScript

    Object Require in JavaScript

    Hi Team,

    Am using java script in asp.net for input validation. When i run the below program it was throwing an exception Object expected. Please advice me where it was going wrong. Thanks in advance. i have attached the full code for your reference.
    Code:
    <script language="javascript" type="text/javascript">
    function check()
    {
    if(document.getElementById('TextBox1').value=="")
    ...
    See more | Go to post

  • Thank a lot for your reply. Its working fine now....
    See more | Go to post

    Leave a comment:


  • krisssgopi
    started a topic Object Reference not set to an instance

    Object Reference not set to an instance

    Hi Team,

    Am using Grid View in ASP.Net while am trying to update the row it was not getting updated. Instead, it throw an exception Object reference not set to an instance. please help me in this regard.

    Code:
    Protected Sub GridView1_RowUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewUpdateEventArgs) Handles GridView1.RowUpdating
            Try
                Dim txtName, txtName1, txtName2,
    ...
    See more | Go to post
No activity results to display
Show More
Working...