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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
P

Prashant B Lavate

@Prashant B Lavate
About
Posts
38
Topics
20
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Importing contacts from hotmail and aol
    P Prashant B Lavate

    yes this is imp coz it g takes url after login to hotmail

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    ASP.NET help

  • Importing contacts from hotmail and aol
    P Prashant B Lavate

    string strNextUrlTemp = webResMailLiveComASPX.Headers[Utility.Location].ToString(); it is giving null

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    ASP.NET help

  • Importing contacts from hotmail and aol
    P Prashant B Lavate

    public void GetContacts(string strUserName, string strPassword, out bool boolIsOK, out DataTable dtContatct, out string strError) { //default values dtContatct = new DataTable(); boolIsOK = true; strError = string.Empty; // ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(MyCertValidation); //1================================================================================================================= //http://mail.live.com the AllowAutoRedirect will call the next url subsequently //http://login.live.com/login.srf?wa=wsignin1.0&rpsnv=10&ct=1193552878&rver=4.5.2130.0&wp=MBI&wreply=http:%2F%2Fmail.live.com%2Fdefault.aspx&id=64855 String strRequestUrl = "http://mail.live.com"; HttpWebRequest webReqFirstPage = (HttpWebRequest)WebRequest.Create(strRequestUrl); webReqFirstPage.Method = Utility.Get; webReqFirstPage.KeepAlive = true; webReqFirstPage.AllowAutoRedirect = true; webReqFirstPage.CookieContainer = new CookieContainer(); webReqFirstPage.UseDefaultCredentials = true; webReqFirstPage.UserAgent = Utility.UserAgent; HttpWebResponse webResFirstPage = (HttpWebResponse)webReqFirstPage.GetResponse(); CookieCollection ccWebReqFirstPage = new CookieCollection(); if (webResFirstPage.Headers[Utility.SetCookie] != null) { ccWebReqFirstPage = Utility.GetAllCookiesFromHeader(webResFirstPage.Headers[Utility.SetCookie], webResFirstPage.ResponseUri.Host); } StreamReader sr1 = new StreamReader(webResFirstPage.GetResponseStream()); String strFirstPage = sr1.ReadToEnd(); sr1.Close(); webResFirstPage.Close(); webReqFirstPage.Abort(); //this is the url for 3rd request string strLoginUrlTemp = Utility.GetRegExParsedValue("srf_uPost='(?.*?)'", strFirstPage); //For 3rd Request //keeping values from the FORM for 3rd request string strPPSXValue = Utility.GetRegExParsedValue("srf_sRBlob='(?.*?)'", strFirstPage); string strPPFTValue = Utility.GetRegExParsedValue("<input.*?name>.*?)\"/>", strFirstPage); //this page call the 2nd request through javascrpt..for this collecting the url string strBaseUrl =

    ASP.NET help

  • Importing contacts from hotmail and aol
    P Prashant B Lavate

    in hotmil it is not giving location so null is coming

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    ASP.NET help

  • Importing contacts from hotmail and aol
    P Prashant B Lavate

    Hi i am trying to import contacts from AOL and hotmail i have done it in Gmail and yahoo but not able to do for Hotmail and AOL will anybody send me some help.

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    ASP.NET help

  • Proble with solution file.
    P Prashant B Lavate

    Hi I have created ASP.Net website on F drive lets say F:\MyProject and its solution file is in C:\Documents and Settings\PRASHANT\My Documents\Visual Studio 2005\Projects\MyProject\MyProject.sln now i have copied my code folder and sln to another PC and i tried to run sln file then i got error message like F:\MyProject is not installed so how can i reslve this issue.

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    ASP.NET csharp help asp-net visual-studio question

  • copy protection
    P Prashant B Lavate

    i have made setup of my project but i want to add copy protection like no body will able to copy cd or it will be installed only once like that so how can i do this?

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    C# question workspace

  • About Copy protection
    P Prashant B Lavate

    i have made setup of my project but i want to add copy protection like no body will able to copy cd or it will be installed only once like that so how can i do this?

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    Windows Forms question workspace

  • making setup file
    P Prashant B Lavate

    yes i setted that but it asks me url path for that but how can setup the same folder

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    C# csharp dotnet workspace

  • making setup file
    P Prashant B Lavate

    i have made setup file added dependencies but when i statrted installation for he shows messgae for frmawork when i click accept it installs it from net

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    C# csharp dotnet workspace

  • making setup file
    P Prashant B Lavate

    yes but i am making setup file by .net only i.e. set up and deploy and deplymen project so from there how can i make it?

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    C# csharp dotnet workspace

  • making setup file
    P Prashant B Lavate

    hello i have made setup file for my window application i want to make installation og .net framework by same setup so i am not able to make it plz suggest something

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    C# csharp dotnet workspace

  • window.open modal dialog problem
    P Prashant B Lavate

    Use This i hope it will help u function OpenNewCust() { window.open("Default.aspx","Title","status=yes,toolbar=no,width=550, height=600, menubar=no,location=no,scrollbars=yes,left=350,top=165"); return false; }

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    ASP.NET javascript help tutorial

  • Video capturing from web cam
    P Prashant B Lavate

    Hello all.. i am working on asp.net 2.0 c# i need to do video capture functionality ..like when i will click on button video from my live web cam will be captured so how to do it plz send me any help...

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    ASP.NET csharp asp-net help tutorial

  • About Multiview Control
    P Prashant B Lavate

    Hi all i am using multiview control so change active index of multiview control i wrote ... MultiView1.ActiveViewIndex = 0; it is in .cs file ... can i set active index using java script if yes plz tell me how can i do this?

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    ASP.NET question java database tools

  • showing google ads
    P Prashant B Lavate

    if u know ans plz let me know... or please leave it

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    ASP.NET help

  • showing google ads
    P Prashant B Lavate

    hello all i wnat to add google ads on my page plz help me

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    ASP.NET help

  • datagrid problem
    P Prashant B Lavate

    use this code Response.ContentType = "application/pdf"; Response.AddHeader("Content-Disposition", strReportName); Response.AppendHeader("content-length", Result.Length.ToString()) ; Response.BinaryWrite(Result); Response.Flush(); Response.Close(); this will render the data in the grid(result) to pdf

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    ASP.NET help csharp css design

  • Datagrid or gridview whith insert button
    P Prashant B Lavate

    please explain what exactly u want... i am not getting u.... chat wt me i am online on prashant_83@hotmail.com

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    ASP.NET tutorial css announcement

  • changing header text in the accordian control dynamically
    P Prashant B Lavate

    please chk the syntax and line of code .... that logic works 100%

    Thanks & Regards, Prashant B. Lavate Software Engineer Mobile : +919423872257 Pune(India)

    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