Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~11.8K People Reached
About Me

Sr. Developer

Favorite Tags

37 Posted Topics

Member Avatar for kedar_challa

Hi, Can anybody explain me how to create a sealed class on c++. thanks in advance, kedar

Member Avatar for Karty619
0
724
Member Avatar for tgreer

[QUOTE=plazmo]would Debug.Assert() do what you are trying to do>?[/QUOTE] Hi, You can add the conditional compilers in the property pages of the solution also. Thanks, Kedar

Member Avatar for nathon
0
315
Member Avatar for mcupryk

[QUOTE=mcupryk]I need to remove the prefix(domain name) if exist in front of a username from a session variable. paramsql.Value = Session("ssNtUser") say the domain is za username is macupryk I would like to remove the za\ so in the session variable I have macupryk only but the domain name can …

Member Avatar for asxcode
0
227
Member Avatar for rufryder

Hi, Google defines the PageRank as below [QUOTE] PageRank extends this idea by not counting links from all pages equally, and by normalizing by the number of links on a page. PageRank is defined as follows:[indent][i]We assume page A has pages T1...Tn which point to it (i.e., are citations). The …

Member Avatar for marc84
1
482
Member Avatar for aripaka

Hi, In ASP.Net perspective 3 tier architecture is to seperate the business logic from the presentation logic. 3 tier architecture consists of [QUOTE] 1.Presentation Tier 2.Business Logic Tier 3.Data Access Tier [/QUOTE] Basically, ASP.Net itself is designed in 3 tier architecture called Modal-View-Controller also known as MVC architecture. In ASP.Net …

Member Avatar for kvprajapati
0
542
Member Avatar for samycbe

Hi, I would suggest you to use "MaskedEdit" control from ajax toolkit. here is the link. [URL]http://ajax.asp.net/ajaxtoolkit/MaskedEdit/MaskedEdit.aspx[/URL]

Member Avatar for nil
0
145
Member Avatar for frmsasp

I dont know how you are adding the dynamic controls at the runtime. But while you are create the new Checkbox Object to add to the form, append the same object to a static collection object like Hash Table. protected static Hashtable mRoleCheckBoxList=new Hashtable(); mRoleCheckBoxList.Add(RoleName, NewCheckBox); Here mRoleCheckBoxList is a …

Member Avatar for sierrainfo
0
1K
Member Avatar for _priya_

[QUOTE=_priya_]Hello Friend, I didn't get any private messages from you in DaniWeb.[/QUOTE] Hi Priya, Im kedar. You are doing good job. Here I have a question for you. Could you please let me know the technologies you are used for your portal site "ITPortal.org". I assume it should be plumtree.

Member Avatar for brajkishoriims
1
1K
Member Avatar for Neeraja

Hi Neeraja, U need to retain the old value before updating the string 's'. Use the follwoing code. [code]if(Session["mykey"] != null) s = Session["mykey"] as string; s = s + "First Name :\n"; // The value of s is always the last value and is not appending. s = s …

Member Avatar for shubhadaamar
0
159
Member Avatar for p17
Member Avatar for irfanurfi

Hi Irfan, Could you please be more specific. You mentioned you have a problem to call web method. What is it?

Member Avatar for irfanurfi
0
112
Member Avatar for jvcoach23
Member Avatar for jvcoach23
0
140
Member Avatar for aravindkishore

If your application is written in ASP.Net 2.0 , you can create a master page that will be the template for all pages inside the web site. Or if it is asp.net 1.1, you can create a base class using the PageTemplate design pattern and all other pages will extend …

Member Avatar for kedar_challa
0
175
Member Avatar for aravindkishore

Hi Aravind, There are lot of ways to attain interacation between the Layers and it totally depends on ur application architecture. The simplest way is to return the String error messages. you can use out parameters. You can write ur own class that extends "EventArgs" and pass it as a …

Member Avatar for kedar_challa
0
67
Member Avatar for kedar_challa

Hi, Can anybody let me know how to stop the postback event on button click in firefox. Thanks in advance.

Member Avatar for Infarction
0
49
Member Avatar for sandy2005

[QUOTE=sandy2005]Hi I have found the following code for Redirecting the user to loginpage on Session timeout : /////////// Protected WithEvents body As System.Web.UI.HtmlControls.HtmlGenericControl Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load body.Attributes.Add("onLoad", "window.setTimeout(""window.location.href='login.aspx'""," & (Session.Timeout * 60 * 1000) + 5000 & ");") Response.Write("Wait for session …

Member Avatar for mvalid
0
1K
Member Avatar for servertweak

[QUOTE=DMR]Nope; there's only [i]one [/i]Bay Area- the San Francisco Bay Area. :mrgreen: Hey servertweak, I'm in Fairfax (Marin county); where are you?[/QUOTE] Hi Guys, Im from mountian view

Member Avatar for Killer_Typo
0
141
Member Avatar for fmardani

Hi, exactly i didnt get what ur trying to do. Where ur not getting the security tab. If it is in the ASP.Net add-in to the IIS manager, then we don't have security tab there. it will show you the Authorization and Authentication tabs. Regards, Kedar

Member Avatar for f1 fan
0
120
Member Avatar for Pscsc

[QUOTE=Pscsc]Hello Im new to c# , I found delegates very difficult to understood can any one recommend a good sites , examples , books or any thing that can make it simple to me ,, thank you[/QUOTE] Hi, Delegates are the objects that stores reference to methods. This is similar …

Member Avatar for beuls
0
190
Member Avatar for Deepa
Member Avatar for kintug

[QUOTE=kintug]I have made a "Web setup" type project to deploy a ASP.net C# application. I cannot find the option to specify the physical path for the virtual directory where the application will be deplyed. By default it installs in "\\Inetpub\wwwroot". Please let me know if somebody has a solution to …

Member Avatar for kedar_challa
0
89
Member Avatar for cumadhu

[QUOTE=cumadhu]Hi All, I am working on a web site project.<BR> And it has the following set up:<BR> web site name: [B]madhu[/B] and <BR> Local path: [B]C:\madhu\Folder1[/B](uses [B]web.config[/B] file which is in [B]Folder1[/B] only).<BR> But i have one file in [B]C:\madhu\FolderXYZ\FileABC.doc[/B].<BR> If i try to access the FileABC.doc(Try to open the …

Member Avatar for Paladine
0
671
Member Avatar for plazmo

[QUOTE=campkev]the only way I can think of would be to create your own class.[/QUOTE] Hi, Is there any perticular reason to use the Array. In Array datastructure the objects are indexed based on the integer value. If you want to store the Key-Value pairs,you can use the following objects provided …

Member Avatar for plazmo
0
115
Member Avatar for TC-Bardock

[QUOTE=cscgal]Hi TC ... welcome to DaniWeb! :)[/QUOTE] Hi Daan, You are the cutiest girl i ever seen

Member Avatar for TC-Bardock
0
91
Member Avatar for Bomba

[QUOTE=Bomba]Is this impossible or did I not make the question plain enough? I have 2nd graders looking at me.[/QUOTE] Hi, Anyways, its not possible to have two onload() methods in a single page.But u can solve this problem by using Timer. Hi Tigreer, I thought the same. Thanks, Kedar

Member Avatar for tgreer
0
140
Member Avatar for Acidburn

[QUOTE=Acidburn]How to show a txt box? Basically I'm a newbie at this, done c++ console writing for a year now and moved on to win32. I've made a new project in .Net 2003... got it to load and have a close button using the following code: [code] private: System::Void button1_Click(System::Object …

Member Avatar for kedar_challa
0
131
Member Avatar for kedar_challa

hi all, I found this dite yesterday from Google. i really impressed very much. It's providing lot of features when compare to other forums. I regularly visit MS.Net forums and I feel this is much better than that. a little bit about me.. I'm a Sr.Developer working on .Net technologies …

Member Avatar for Dani
0
140
Member Avatar for lkaravi

Hi Ravi, This solution looks very strange to me. If you requirement is just to increment the U_Id value on insert of new record, u can do that in the database level rather than using c# code. How can you insert the alphanumeric value in to the U_id (numeric) field …

Member Avatar for kedar_challa
0
454
Member Avatar for aarya

[QUOTE=aarya]i used to save my asp file as localhost/myweb/a.asp it is working.i ahve downloaded the .netframework 1.1 to suport aspx extension and stored in wwroot/myweb directory. the storing the file is same as asp right? is it different. if it is the same then my a.asp is working why not …

Member Avatar for Paladine
0
623
Member Avatar for ruby_ffsi

Hi, try this. if(drv("mn_checked") != null && drv("mn_checked").ToString <> "") e.Item.Cells(2).Visible = true; else e.Item.Cells(2).Visible = false; thanks, Kedar

Member Avatar for kedar_challa
0
183
Member Avatar for scr

Hi, can u try this. [QUOTE] [b]int myCounter = 0;[/b] foreach (DataGridItem spriden_ID in dgEmployees.Items) { CheckBox cbSpriden = (CheckBox) spriden_ID.cells[i][index];[/i] if (cbSpriden.Checked) { //Stuff to add to db here [b]myCounter++;[/b] } else { lblStatus.Text ="Scheduling failed: " + addCourses.ErrorMessage; } } [/QUOTE] Thanks, Kedar

Member Avatar for kedar_challa
0
88
Member Avatar for topaz

[QUOTE=topaz]Hi I was planning to create an online dating system for my final year project, i jus need ideas on how i could go ahead with implementing the project. Thank you[/QUOTE] Hi Topaz, When we are going to design any project we need to mind the following things. [list] [*]Authentication …

Member Avatar for kedar_challa
0
90
Member Avatar for Gryzor

[QUOTE=campkev]can you post the exact error you are getting[/QUOTE] Hi, I dont think the problem is with the capitalization and you are using the correct format. Here you code is a little bit confusing. I can't understand why you are extending the TcpClient class and adding socket object to it. …

Member Avatar for kedar_challa
0
933
Member Avatar for akraj

[QUOTE=red1980][B]Here you are: ASP.Net Web Page Processing [/B] That's actually not the life cycle, that's the asp .net pipeline.[/QUOTE] Hi Red, You are right. It is HTTP request processing pipeline explains how the request is manipulated by different objects. But Page Event Life Cycle contains all the events and methods …

Member Avatar for kedar_challa
0
242
Member Avatar for pyari_priya1981

[QUOTE=campkev]Hard to say without seeing code. Do you use the same name for the session variable for both? Maybe change the name of the auditor session variable, eg: Session["username"] and Session["Auditor_username"][/QUOTE] Hi, I don't think it's problem with Session variables. Anyway IIS will create two seperate sessions for each user …

Member Avatar for kedar_challa
0
177
Member Avatar for frmsasp

Hi, We need to change the IIS Authentication mode in order to Debug the application. 1. Go to Administative Tools, Open IIS. 2. Go to properties of the virtual directory of your application. 3. Choose the Directory Security Tab under properties, Click on the edit button. 4. Check the "Integrated …

Member Avatar for kedar_challa
0
98
Member Avatar for seemagaur

Hi ;) , you are giving the session timeout in your code, that might the problem. Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs) [I]Session.Timeout = 100[/I] Session("Loggedin") = "No" End Sub Please remove the session timeout and try it. thanks, Kedar

Member Avatar for kedar_challa
0
163

The End.