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
K

Kuricheti

@Kuricheti
About
Posts
44
Topics
30
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to read Headers in Wsdl Method
    K Kuricheti

    Hi Friends, I have one wsdl method which will be called by J2ME application installed in the UserMobiles. When evver I get the request to my Wsdl method, I need to read the headers to know the user mobile number. Is there any way to read the headers in wsdl method... where as in aspx page I can easily read with Request.Headers collection, but from wsdl method I am not able to do that.... Can any one please help me in this.. Thankyou, Haribabu K

    Web Development wcf help tutorial

  • Unable to serialize the session state when session mode is SqlServer
    K Kuricheti

    Hi Abhishek, Thanks for the reply, I am placing some class objects and List objects in sessions, but all classes are serialized. And also we are placing some dataset objects, DataTable objects and HashTable objects and ArrayList objects into sessions. will it be causing any problem.. if so what could be the solution..? else where is the problem. Thanks Haribabu K

    ASP.NET help csharp asp-net sysadmin windows-admin

  • Unable to serialize the session state when session mode is SqlServer
    K Kuricheti

    Hi, I have two web applications with session state mode = SQLServer. Both application are hosted in windows Server with different virtual names. Now I have added the link of application2 in application1 Viceversa added application1 link in application2 to come back. both applications are working fine..after some time when I click on link of application2 from application1 it is immediately displaying server error saying that " Unable to serialize the session state. In 'State Server' and 'SqlServer' mode, ASP.NET Will serialize the session state objects, and as a result non-serialize objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode." Application2 is having some sessions which holds some class objects, all classes are serialized classes, and also some sessions holds datatables and hash tables directly will it be any problem, if so what is the solution for this. As the site is in Live, It is very urgent to fix this issue. Please help me to overcome from this problem. Thanks Haribabu K

    ASP.NET help csharp asp-net sysadmin windows-admin

  • How to share session over multiple applications
    K Kuricheti

    Hi Everyone, I have two web applications, hosted in ISS with different virtual names. Both applications are having their own databases but users for both applications are same, and both are SqlServer Session mode (session db is same for both). If user logs into the first application, in the landing page we are giving link to second application along with all other links. Here I want to use same sessions of first application and need to validate the user in second application and navigate him to his home page of second application, insted of again displaying login screen to the user. Note: Both are different application hosted with different virtual names. Hope my question is clear, how can I achieve this concept using SqlServer Session Mode. Thanks Hari

    ASP.NET question database tutorial

  • How to use Find Method for an Object Collection
    K Kuricheti

    Hi Friends, I have one class with four properties like public class Class1 { private int m_CountryID = 0; private string m_CountryName = string.Empty; private int m_OperatorId = 0; private string m_OperatorName = string.Empty; public int CountryId { get { return m_CountryId; } set { m_CountryId = value; } } public string CountryName { get { return m_CountryName ; } set { m_CountryName = value; } } public int OperatorId { get { return m_OperatorId; } set { m_OperatorId = value; } } public string OperatorName { get { return m_OperatorName; } set { m_OperatorName = value; } } }// End of Class1 Now in another class i have collection object for the above class public Class Class2 { Class1 objClass1 = null; List lstCountries = new List(); objClass1 = new Class1(); objClass1.CountryId = 1; objClass1.CountryName = "INDIA"; objClass1.OperatorId = 1; objClass1.OperatorId = "AirTel"; lstCountries.Add(objClass1); objClass1 = new Class1(); objClass1.CountryId = 1; objClass1.CountryName = "INDIA"; objClass1.OperatorId = 2; objClass1.OperatorId = "VodaFone"; lstCountries.Add(objClass1); objClass1 = new Class1(); objClass1.CountryId = 2; objClass1.CountryName = "US"; objClass1.OperatorId = 3; objClass1.OperatorId = "US-VodaFone"; lstCountries.Add(objClass1); objClass1 = new Class1(); objClass1.CountryId = 2; objClass1.CountryName = "US"; objClass1.OperatorId = 4; objClass1.OperatorId = "US-Airtel"; lstCountries.Add(objClass1); /* now I know the operatorid. I want to get the country id of that perticular Operatorid with in the List, Eg: if i send oprtaorid 3 i wantto get countryid as 2 lstCountries.Find("How can we use this") For this one How can we use List.Find Method or any other alternative..? */ } Haribabu

    ASP.NET tutorial question

  • How to Run ffmpeg commands using .Net
    K Kuricheti

    Hi Friends, I have to run ffmpeg commands(userd to Transcode audio and video) from c#. Actually I'm trying to make one dll with one method which does this transcoding of audio and video. ex: c:\\ffmpeg\\bin\\ffmpeg.exe -i c:\\ffmpeg\\bin\\ish.mp4 -y sample.mp4 The above command generates one sample.mp4 video file by taknig ish.mp4 as input. This is not fixed commands will generate at runtime based on the input file. So I want to run this command from .net. I tried by using string path = "C:\\ffmpeg\\bin\\ffmpeg.exe"; string fileargs = "ffmpeg -i ish.mp4 -s cif -vcodec h263 -acodec libamr_nb -ar 8000 -ac 1 -ab 12.2k sampleish12.3gp"; Process p = new Process(); p.StartInfo.FileName = path; p.StartInfo.Arguments = fileargs; p.StartInfo.UseShellExecute = false; p.StartInfo.CreateNoWindow = false; p.StartInfo.RedirectStandardOutput = false; p.Start(); p.WaitForExit(50000); but it is not giving any output file Thanks HariBabu

    C# csharp tutorial

  • How to Use Com dll in Asp.Net [modified]
    K Kuricheti

    Hi friends, I have one com dll created to hash the password. Now I'm using that dll in Asp.net application. The steps that I did are: 1) Opened .Net command prompt imported the com dll C:\> tlbimp GMUtils.14.dll /out: NetGMUtils.dll 2) The above command created one dll. 3) I added that dll(NetGMUtils.dll) to bin 4) when I'm trying to craete an object for this class ,then it is throwing an error "Retrieving the COM class factory for component with CLSID {7CCE4755-47BD-4F8D-B469-8E54FFD29E18} failed due to the following error: 80040154" Can any body have the solution. I searched a lot in google also but there is no solvable solution. Advance Thanks for help Advance Thanks for help Hari

    modified on Monday, April 21, 2008 9:59 AM

    ASP.NET help csharp asp-net com cryptography

  • How to Use COM Dll in ASP.NET
    K Kuricheti

    Hi Friends, I have one Com Dll to hash the password. How to use that DLL in ASP.net to hash the password. Thanks Hari

    ASP.NET csharp asp-net com cryptography tutorial

  • How to stop PostBack for Treeview control
    K Kuricheti

    Hi AhsanS, Thanks for the response but there is no AutoPostBack Property for Treeview control. :)

    modified on Thursday, March 13, 2008 8:54 AM

    ASP.NET csharp asp-net help tutorial

  • How to stop PostBack for Treeview control
    K Kuricheti

    Hi friends, I'm using asp.net 2.0 Treeview control. This control have some rootnodes and child nodes. on clicking any node(either parent or child node) page is getting refreshed. I want to stop the postback and node should be selected. After selecting the node, in "ADD" button click event i want to catch which node is selected. Anybody already worked with this type of requirement plz help me. Thanks in Advance Hari

    ASP.NET csharp asp-net help tutorial

  • New Features in 3.5 [modified]
    K Kuricheti

    Hi Mark, I am not waiting for reply Iam doing some other work para'lly ..anyhow thanks for ur reply..but I am just spending time to reply u because even if u didn't give solution no probs but don't give this type of answers its really time weasting to see these type of answers. don't get heart..its my opinion. keep smiling bye

    ASP.NET algorithms

  • New Features in 3.5 [modified]
    K Kuricheti

    Hi Friends, Anybody have a list of new features in 3.5 over 3.0. I can get these details by searching in microsoft website or in google, but i do not have time its urgent for me so anybody alredy have a list of this features please send me immediately. Waiting for response. Thanks Hari

    modified on Thursday, February 21, 2008 7:01 AM

    ASP.NET algorithms

  • How to Find Control in a page which is inherited from MasterPage
    K Kuricheti

    Hi, I have one master page and one default.aspx page inherted from master page. Now My Default page has 10 TextBox controls with ID's 'Textbox1','Textbox2',.......'Textbox10' and one Button. In th button click event I want to catch these textboxes dynamically like for(int i=1;i<=10;i++) { (TextBox) txt = (TextBox)FindControl("TextBox"+i); } I saw the viewsource all controlId's are replaced like "ctl00_CphAdmin_TextBox1". even I tried like for(int i=1;i<=10;i++) { (TextBox) txt = (TextBox)FindControl("ctl00_CphAdmin_TextBox"+i); } But not worked .........can any body help me the way to acheive this. Thnaks Hari

    ASP.NET help tutorial

  • File Size
    K Kuricheti

    Hi patel I run the above code. I'm getting javascript error at 'var oas = new ActiveXObject("Scripting.FileSystemObject");' saying that 'Microsoft JScript runtime error: Automation server can't create object' What I have to do? Thanks Hari -- modified at 2:42 Monday 5th November, 2007

    ASP.NET

  • File Size
    K Kuricheti

    Thanks, Is there any way to find the same in button's Clientside click event i.e 'OnClientClick' event Because to avoid unnecessary postback. Thanks Hari -- modified at 5:00 Friday 2nd November, 2007

    ASP.NET

  • File Size
    K Kuricheti

    Hi, I am using File Upload control to upload files. Is there any way to find the size of the file before saving it. Because I want to tell to the end user that 'ur File size exceeded the max limit'. Thanks Hari

    ASP.NET

  • Internet Speed and Bandwidth [modified]
    K Kuricheti

    Hi, I want to know the Internet Speed and Bandwidth from the Asp.Net application(c#) Is there any way to find that information.. Guys Please help me its an urgent requirement. Thanks Hari -- modified at 8:46 Thursday 1st November, 2007

    ASP.NET csharp asp-net performance help

  • XML Navigation in Asp.Net
    K Kuricheti

    Hi I have a xml file like, " Books Book ID="001" Author Mark /Author Publisher Sams /Publisher /Book Book ID="002" Author Joe /Author Publisher AWL /Publisher /Book Book ID="003" Author James /Author Publisher Spect /Publisher /Book Book ID="004" Author Thomos /Author Publisher McHill /Publisher /Book /Books " My form has Three Text boxes to display BookId,Author and Publisher and also four Buttons with names First, Next, Previous and Last resp. Now what my question is I want to get the data from xml file and display in textboxes for the respective button events without using any dataset by using Xml Objects. It may be looks simple for someone, I'm new to XML Thanks Hari

    ASP.NET csharp asp-net xml question learning

  • How to run an application with windowAuthentication connectionString from IIS?
    K Kuricheti

    Hi Michael, Thanks for your quick reply. Yse. I have administrator rights in my system. I added impersonate in web.config file.. ............ ............ Again no use....any other Michael? Thanks in advance Hari

    ASP.NET security sysadmin windows-admin tutorial question

  • How to run an application with windowAuthentication connectionString from IIS?
    K Kuricheti

    Hi Michael, Thanks for your reply, and I did the same thing which you suggested but it failed to do the trick. Is there any other solutions. Please forward me. Thanks Hari -- modified at 2:06 Monday 3rd September, 2007

    ASP.NET security sysadmin windows-admin tutorial 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