Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
G

gottimukkala

@gottimukkala
About
Posts
100
Topics
61
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • check if flash plugin intalled on browser
    G gottimukkala

    Hi I have a problem with checking if Flash installed on the user's browser in Internet Explorer, Firefox and Chrome(mainly). When the loads the page, it first checks for the flash using client script and I have to pass that(if it's installed or not) to the page. I have the client -sciprt on User Control and my problem here is to pass the result to the code-behind code of the usercotnrol. Here is my client-script code on user control: <!-- var flashinstalled = 0; var FlashVersion = 0; MSDetect = "false"; if (navigator.plugins && navigator.plugins.length) { x = navigator.plugins["Shockwave Flash"]; if (x) { flashinstalled = 2; if (x.description) { y = x.description; FlashVersion = y.charAt(y.indexOf('.')-1); } } else flashinstalled = 1; if (navigator.plugins["Shockwave Flash 2.0"]) { flashinstalled = 2; FlashVersion = 2; } } else if (navigator.mimeTypes && navigator.mimeTypes.length) { x = navigator.mimeTypes['application/x-shockwave-flash']; if (x && x.enabledPlugin) flashinstalled = 2; else flashinstalled = 1; } else MSDetect = "true"; //alert(flashinstalled + " : " +FlashVersion + " : " + navigator.plugins.length); // --> on error resume next If MSDetect = "true" Then For i = 2 to 10 If Not(IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & i))) Then Else flashinstalled = 2 FlashVersion = i End If Next End If If flashinstalled = 0 Then flashinstalled = 1 End If Can any one give me idea please! I am stuck here! Thanks in advance.

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    ASP.NET help com adobe tools career

  • Problem with connection to Socket
    G gottimukkala

    Hi I need to validate the email addresses to check if they are existing or not. I used the following code to check first for the validation of domain but it failed with the following exception : A connection attempt failed because the connected party did not properly respond after a certain period of time, or established connection failed because conencted host has failed to respond 209.85.135.17:25 Here I used 25 port but is that port valid or i have to use someother port.

    string address = "test@g.com";
    string[] host = (address.Split('@'));
    string hostname = host[1];

    IPHostEntry IPhst = Dns.Resolve(hostname);
    IPEndPoint endPt = new IPEndPoint(IPhst.AddressList[0], 25);
    Socket s= new Socket(endPt.AddressFamily,
    SocketType.Stream,ProtocolType.Tcp);
    s.Connect(endPt);

    Can anyone please help me. Any Ideas please!! I need it urgently. Thanks in advance,

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    C# help com

  • Sharepoint CAML query for SPQuery.GetItems() [modified]
    G gottimukkala

    Hi We have discussions webpart customized to us and I want to get the number of discussoins from a particular user. My problem is when I pass the First Name and Last Name of the user (which is the displayname on the ffront end )in my query then I would able to get the correct count but if I pass the username then I am not able to the correct count from that user. Is there a way that I can say that get by username. Please have a look at my SPQuery code: SPQuery query = new SPQuery(); SPList splist = spWeb.Lists["Forum"]; query.Query = "<Where><Or><Eq><FieldRef Name='Author'/>" + "<Value Type='User'>" + spUsrDisplayName + "</Value>" + "</Eq><Eq><FieldRef Name='Editor'/>" + "<Value Type='User'>" + spUsrDisplayName + "</Value>" + "</Eq></Or></Where>"; query.ViewFields = ""; SPListItemCollection spListColl = splist.GetItems(query); int discussionsCount = spListColl.Count; Can any one give me any idea please. Thanks, Regards, Aruna

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    modified on Wednesday, November 25, 2009 4:20 AM

    SharePoint sharepoint database com help

  • Viewing word documents in browser?
    G gottimukkala

    Hi There is one site which publishes word documents to html and displays them in Html ofcourse with nice formatting. You can check it here www.doxtop.com

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    ASP.NET csharp html asp-net tools help

  • Sending emails from windows application on windows7
    G gottimukkala

    Hi I was trying to create a windows application that sends emails. Recently I installed windows 7 on my machine and added the IIS from the windows add/remove components. When my application tries to send email with smtp.send() method, I am always getting SMTP host was not specified. I read in the internet that windows 7 does not come with SMTP server so I installed SMTP server from hMailServer.com and tried. Now I am getting SMTP authentication fails. Does anyone have have problems with windows 7. Any Ideas please. Thanks.

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    C# com sysadmin windows-admin security

  • Using my custom handler inside sharepoint teamsite
    G gottimukkala

    Hi We have an HttpHandler developed for our web application and we are tying to use that handler inside sharepoint teamsite. I added the dll of my handler in the GAC and changed the web.config with a line like below: <add verb="*" path="webservices.axd" type="x.Framework.HttpHandlers.WebServicesHandler, x.Framework, Version=1.0.0.0, Culture=neutral, PublicKeyToken=3ed025cf0c333301" validate="false"/> Do I have to do some thing else to access my handler. After doing the above things, I still see that my handler says: object reference not to set an instance of the object. I tried ouput some Hello text on the first call of the handler but I havent get my text and stil I am getting: object reference not to set an instance of the object. If I access my handler from other port, it is working fine. Does any one tell me, to do more changes and anything else to access my handler. Any ideas please!! Thanks in advance,

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    SharePoint sharepoint dotnet com announcement

  • how to get node value from var containing xml file data using java script
    G gottimukkala

    Try with ajaxResponse.firstChild to get the first child of ajaxResponse node.

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    ASP.NET java javascript tools xml tutorial

  • How to navigate Next,Previous ,Last,First
    G gottimukkala

    Hi When you select the rows from table sorted by some order let's say sorting by name you can ranking for selected rows and then get the rows where between 1 and 14 This sample query may help you: DECLARE @PageIndex int = 1, DECLARE @PageSize int = 14 SELECT * FROM ( -- selecting the rows sorted by name SELECT Row_NUMBER() OVER (ORDER BY Name DESC) AS Row, Q.* FROM Questions_Table Q ) AS questions WHERE Row BETWEEN CONVERT(nvarchar(10), ((@PageIndex - 1) * @PageSize + 1)) AND CONVERT(nvarchar(10),@PageIndex*@PageSize) Hope that helps

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    ASP.NET help tutorial

  • OpenId, face book connect login with RPX API
    G gottimukkala

    Hi I am trying to implement OpenId and facebook connect login for our site. I found there RPX API which supports login from variuos providers. I found only uservoice.com which implemented with RPX API, my question is whether do we get password to store in our database for next time login if the user wants to use our site login form. Any ideas please!!!!!!!!

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    ASP.NET database com json question learning

  • Problem with unicode characters
    G gottimukkala

    Hi I have webservice which retrieves the users data from sql server. If one of the user uploads a doc with a small rectangle in the data retrived from database, my webservice is failing. Could any one please tell me, how can remove those Unicode characters before returning results. Thanks in advance,

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    ASP.NET database sql-server com sysadmin help

  • Visual studio problem
    G gottimukkala

    Thanks for your replies. I attched our webserver process to the debug and its working now.

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    ASP.NET csharp asp-net visual-studio com debugging

  • Visual studio problem
    G gottimukkala

    I am using IIS 5.1 but My site doesn'z host on IIS Server. I just did iisreset if the visual studio catches something. It was working fine since 5 days I am having this problem.

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    ASP.NET csharp asp-net visual-studio com debugging

  • Visual studio problem
    G gottimukkala

    Hi I have a nasty problem with my visual studio. I cannot enter Debug mode when click Start Debugging button its opening the web page of my solution but the solution is not in the Debug mode, I still see Start Debugging button instead of Stop and it never hits the breakpoints as it's not in debug mode. I do the iisreset several times and remove the temporary asp.net files and iisreset and clean the solution and close and do the same thing, no change it's always the same case. Can any one please tell me if any of you have the same problem. Thanks in advance, Aruna

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    ASP.NET csharp asp-net visual-studio com debugging

  • [newbie] Nothing displayed in page that should inherit from Master
    G gottimukkala

    Hi I would say that you should have the controls registered in your page (inside your content place holders). then you should start see soemthing. sample example here: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Account.aspx.cs" Inherits="v1_1_Pages_Account" MasterPageFile="~/v1_1/MasterPages/master2.master" Title="My Profile" Theme="v1_1"%> <%@ Register Src="../../Controls/Common/CtrlBreadCrumb.ascx" TagName="CtrlBreadCrumb" TagPrefix="uc1" %> <asp:Content ID="Content3" ContentPlaceHolderID="breadCrumb" Runat="Server"> <uc1:CtrlBreadCrumb ID="CtrlBreadCrumb1" runat="server" /> </asp:Content> Hope that helps

    -- http://ashakthi.blogspot.com http://kids-articles.blogspot.com

    ASP.NET workspace csharp visual-studio com sysadmin

  • Using radiobuttons in groups
    G gottimukkala

    Hi I created a radiobuttons in groups for my website like here : http://www.doxtop.com/browse/384c0894/email-settings.aspx?private_key=34de2c40 in this link. I used this code for each radio button groups <td> I receive a new message from </td> <td class="tdRadios"> <input id="rblMsg1" type="radio" name="rblMsgs" runat="server" value="everyone"/> </td> <td class="tdRadios"> <input id="rblMsg2" type="radio" name="rblMsgs" runat="server" value="friends" checked/> </td> <td class="tdRadios"> <input id="rblMsg3" type="radio" name="rblMsgs" runat="server" value="none"/> </td> After clicking save button I want to get the selected values from all radio button groups. I found that I have loop through all radio buttons in the groups separately and get the values. Is there any other good solution for this. Or is it possible to do the same design with asp:RadioButtonList if anyone know it could you please tell me. Thanks.

    ASP.NET com design sysadmin question

  • Creating local database on sql server
    G gottimukkala

    Hi I installed Sql Server 2005 ManagemenStudio in my local machine to create sample tables in my local database. When I open the Sql Server its keep on asking me to connect to the server, can't I create local database and create tables and stored procedure there. Can any one help me please. Thanks in advance,

    Database

  • Checking the fail status of windows service
    G gottimukkala

    Thanks all for your replies. Sorry, I will post next time in other forum.

    ASP.NET

  • Checking the fail status of windows service
    G gottimukkala

    Hi How can we check the failure of windows service programatically. I have a windows service that elapses every 5 minutes and I need to check if the service is failed then restart it automatically in my code. I googled but I couldnt find the Failed Status for the windows service. Any ideas please!

    C#

  • Checking the fail status of windows service
    G gottimukkala

    Hi How can we check the failure of windows service programatically. I have a windows service that elapses every 5 minutes and I need to check if the service is failed then restart it automatically in my code. I googled but I couldnt find the Failed Status for the windows service. Any ideas please!

    ASP.NET

  • [Message Deleted]
    G gottimukkala

    [Message Deleted]

    ASP.NET
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups