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
Y

yadlaprasad

@yadlaprasad
About
Posts
52
Topics
43
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Where is the appropriate lifecycle step we can introduce JavaScript execution in the page
    Y yadlaprasad

    Hi, Where is the appropriate lifecycle step we can introduce JavaScript execution in the page? can anyone please explain?

    fttyhtrhyfytrytrysetyetytesystryrty

    ASP.NET javascript question

  • MCTS Certification
    Y yadlaprasad

    Hi, I want to take MCTS certification on .Net Framework 3.5. for this which exams i need to take? i think first i should take 70-528 after that 70-562. am i right? i didn't done any certification previously and this is first one. Again 70-536(.Net framework 2.0) is mandatory to take before this? please suggest me how to take this exam?

    fttyhtrhyfytrytrysetyetytesystryrty

    Web Development csharp dotnet tutorial question

  • Advantages or differences b/w WCF and WCF with Rest
    Y yadlaprasad

    Hi, as i am new to "WCF Restful services" i started reading some blogs in internet and i found one advantage like "URI Purity". apart from that what type of advantages that we have with "WCF RESTful Services" over normal "WCF services" ?? can anyone please explain?

    fttyhtrhyfytrytrysetyetytesystryrty

    WCF and WF csharp wcf json question

  • Add column to excel
    Y yadlaprasad

    Hi, Thanks for reply. instead of using File.CreateText, i can use File.Create(path) also i think this will create the required file. but here i am struck with adding columns to it. how to do that?

    fttyhtrhyfytrytrysetyetytesystryrty

    C# help tutorial question

  • Add column to excel
    Y yadlaprasad

    HI, in my code, I am checking for a excel file exists or not. if it doesn't exists i am trying to creating new one along with some columns. here i am able to create the excel file but i don't know how to add columns to it. can any one please help?? below is my code block.

    private void CheckExcelfile()
    {
    string path = @"C:\Servicedeatils.xls";
    if (!File.Exists(path))
    {
    using (StreamWriter sw = File.CreateText(path))
    {
    How to add columns to the created excel file??

                }
            }
    
            
        }
    

    fttyhtrhyfytrytrysetyetytesystryrty

    C# help tutorial question

  • Remove items from the list box in C# windows application
    Y yadlaprasad

    Hi, i am trying remove some items from the listbox in C# windows application. but it doesn't work for me. can you please help?? below is the code snippet

    foreach (object o in Lstservices.SelectedItems)
    {
    MessageBox.Show(Lstservices.SelectedItem.ToString());
    Lstservices.SelectedItems.Remove(Lstservices.SelectedItem);

            }
    

    fttyhtrhyfytrytrysetyetytesystryrty

    C# csharp help question

  • Any Problem with VS 2010 Ultimate? if VS 2008 already exists..
    Y yadlaprasad

    Hi, Currently i am using VS 2008 in my PC, now i am planning to install VS 2010 Ultimate in my PC. is its going to effect to my existing applications,if i install this . i want to use my VS 2008 Applications as it is(Don't want to upgrade existing Applications). please suggest me. if it's effects i will roll off from the idea of installing VS2010. Thanks in advance..

    fttyhtrhyfytrytrysetyetytesystryrty

    .NET (Core and Framework) visual-studio help question

  • Windows Service service Account = Network
    Y yadlaprasad

    Hi, I am trying to write a windows service which is used to pull some data on the network(Intranet) for regular intervals (for every 30 minutes). but i am very new to this. i googled on the internet but i found all the samples on Service Account type=localsysatem but not the Network. can any one give me some sample example how we can pull data on network? even i just tried a sample to make a log entry with in the localsystem for every 5 minutes. but it makes any entry when you stop or start service manually but its not doing that automatically. even i set the property "SrartType" of serviceinstaller to 'Automatic'. can any one please help me??

    fttyhtrhyfytrytrysetyetytesystryrty

    C# sysadmin help tutorial question

  • Problem with twitter integration in C#
    Y yadlaprasad

    Hi, I am trying to post a message to twitter from my ASP.NET Application.so downlaoded the Twitterizer.Framework.dll and try the below code. but i am getting error message like "{Twitterizer.Framework.TwitterizerException: Unable to connect to the remote server ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 128.242.240.116:80 at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)"

    Twitter twitter = new Twitter(TwitterUserName, TwitterPassword);

                string TwitterMsg = message.Text;
                if (message.Text.Length > 120)
                {
                    TwitterMsg = TwitterMsg.Substring(0, 130) + "... For more update logon to DailyFreeCode.com";
                }
                else
                {
                    TwitterMsg = TwitterMsg + "... For more update logon to DailyFreeCode.com";
                }
                twitter.Status.Update(TwitterMsg);
                lblTwitMsg.InnerText = "Your have shout successfully on http://twitter.com/" + TwitterUserName;
    

    fttyhtrhyfytrytrysetyetytesystryrty

    ASP.NET csharp help asp-net com sysadmin

  • Problem with Random class in C#
    Y yadlaprasad

    HI, i am using Random class in my code like below private int RandomNumber(int min, int max) { Random random = new Random(); return random.Next(min, max); } and i am clalling this method in for loop. my expectation is for every iteration in the loop i am expecting some new random number. code for that is like below: string waybill= "W" + RandomNumber(10000, 90000).ToString(); Problem: everytime i am gettting same random number fr every iteration. instead of generating different random number. can any one help me , where i done the mistake.

    fttyhtrhyfytrytrysetyetytesystryrty

    C# help csharp lounge

  • Require StoredProc
    Y yadlaprasad

    Hi , Thanks for reply in this stored proc i want to return some value. so that i can handle in my C# sharp code. i this case i want else condition and some return value

    fttyhtrhyfytrytrysetyetytesystryrty

    Database sharepoint help

  • Require StoredProc
    Y yadlaprasad

    Hi, i want to insert some users in a table. before inserting those users i want to check that user is already exists or not. so i want to written one sp.can any one please help me by posting some sample Storedproc

    fttyhtrhyfytrytrysetyetytesystryrty

    Database sharepoint help

  • facing problems with Dictonary object
    Y yadlaprasad

    Hi All, I have one sample sql query and in where condition i need to put one value which is coming from dictonary object. sample sql query: select * from XYZ where column1= {0} so, i used string.Format(sql,searchvalue), sql: query with where condition searchvalue: Dictonaryobject(holds key and value) but while debugging it is not replacing dictionary value and it is replacing text like 'System.Collections.Generic.Dictionary`2[System.String,System.String]' i am a bit confused why it is not replacing with dictionary value. can anybody help on this?

    fttyhtrhyfytrytrysetyetytesystryrty

    C# database help question

  • Access denied
    Y yadlaprasad

    Hi abhijit, i am running that site from visualstudio

    fttyhtrhyfytrytrysetyetytesystryrty

    ASP.NET help

  • Access denied
    Y yadlaprasad

    Hi All, I am getting below error while building my Application. can anyone help on this. Error 1 Failed to start monitoring changes to 'C:\..\global.asax' because access is denied.

    fttyhtrhyfytrytrysetyetytesystryrty

    ASP.NET help

  • Ajax ModalPopup
    Y yadlaprasad

    Hi friend, i am using same extender, but the problem is with the pdf, which is opening below the buttons, that pdf Appears above the modalpopup,so it hides my pop up panel. can any one tell me how to open this modal popup above this PDF..

    fttyhtrhyfytrytrysetyetytesystryrty

    ASP.NET help tutorial question

  • Ajax ModalPopup
    Y yadlaprasad

    Hi all, I have webpage and 2 buttons(say Butn1, Butn2), when i click on a Butn1,it will load usercontrol below the 2 buttons on the same page, that usercontrol having a pdf file opens on the same webpage(i mean, it won't show open modaldaialog and asking 'Open' 'save' 'cancel'.) after that when i click Butn2, it will open AjaxModalpopup and asking some details to register. problem: when i click on button2 Modalpopup appear but it is not blocking behind the page. that pdf file is still readable in this case. i want to open modalpopup and it should block entire page even Pdf file behind that modalpopup how to achive this?

    fttyhtrhyfytrytrysetyetytesystryrty

    ASP.NET help tutorial question

  • AjaxModalPopup clicking OK button ,should reatin focus on textbox
    Y yadlaprasad

    Hi All, I have a ModalPopextender control on my page. When I enter some value on the textbox i am calling one Javascript function to validate the value in the textbox with onBlur event. if the validation error rises i am showing that error on AjaxModalPopcontrol . and when i Press "ok" on that Control, i Should retain the Focus on The textBox agian. How to Achieve this?

    fttyhtrhyfytrytrysetyetytesystryrty

    ASP.NET javascript help tutorial question

  • Throwing parser Error message that .cs File is not found, after publishing.
    Y yadlaprasad

    Hi all, I have build a website and running it successfuly. after that i tried to publish(published all ASPX pages and dll's) this project on server. it also done successfully. but when access a page it is throwing an error like aaa.aspx.cs file not found. this file exists in a folder of my project. in my local machine it is working fine. after publishing i am getting this error. can any one help me in that how to run this page.

    fttyhtrhyfytrytrysetyetytesystryrty

    ASP.NET help sysadmin tutorial

  • Difference between Response.redirectpermanent and server.transfer
    Y yadlaprasad

    Hi abhishek,it is so clear for me. thank you so much my friend.

    fttyhtrhyfytrytrysetyetytesystryrty

    ASP.NET sysadmin question
  • Login

  • Don't have an account? Register

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