[DotNetDevelopment] Re: ASP.NET C#: Isses in TimeZone while moving code from Test to Prod

2013-03-21 Thread Amit Kumar
Apologies for sharing incomplete information. However the problem has been resolved. Thanks You! On Thu, Mar 7, 2013 at 12:30 PM, Amit Kumar wrote: > Hi All, > > We are facing a strange problem while moving code from Test to Prod > environment. > > Any idea on this would be a great help. > >

[DotNetDevelopment] Re: ASP.NET 2003 won't debug

2012-01-17 Thread Cerebrus
Great ! Always glad to be of assistance. On Jan 18, 1:42 am, jtaylor wrote: > Your search phrase was on target.  Turned out to be an IE issue, not > anything with > VS2003.http://weblogs.asp.net/abdullaabdelhaq/archive/2009/06/01/VS-Debug-Pr... > > Thanks! > > On Jan 16, 2:13 am, Cerebrus wrote

[DotNetDevelopment] Re: ASP.NET 2003 won't debug

2012-01-17 Thread jtaylor
Your search phrase was on target. Turned out to be an IE issue, not anything with VS2003. http://weblogs.asp.net/abdullaabdelhaq/archive/2009/06/01/VS-Debug-Problem-with-IE8.aspx Thanks! On Jan 16, 2:13 am, Cerebrus wrote: > Ahhh... VS 2003... That didn't have the built-in webserver. IIS was

[DotNetDevelopment] Re: ASP.NET 2003 won't debug

2012-01-16 Thread jtaylor
IIS config: Application Settings: Application name: {app name} Starting point: I open the ASMX in IE, do Debug=>Processes... and attempt to attach the debugger to the iexplore.exe instance that shows my web service. It gives me this error: "Unable to attach to the process. There is no managed c

[DotNetDevelopment] Re: ASP.NET 2003 won't debug

2012-01-16 Thread Cerebrus
Ahhh... VS 2003... That didn't have the built-in webserver. IIS was the only server available. Couple of things to check: 1. Check IIS configuration, particularly related to ASP.NET integration. Make sure that the website is configured to run on .NET 1.1. 2. Check project configuration (debug mo

[DotNetDevelopment] Re: ASP.NET support

2011-06-15 Thread John
Stephen, You are correct in some regards. But nowadays, businesses are cut into 3 camps: Linux/Unix, Windows, & Solaris. Although, Solaris is usually lumped into the Unix world, it is a beast all to its own. Sandeep, What you need to do is first find out what server, the O/S, you will be hos

[DotNetDevelopment] Re: ASP.NET support

2011-06-12 Thread Cerebrus
Removing the message will have to suffice for now. ;-) -- Cerebrus. Group Moderator. On Jun 12, 2:39 pm, Mike Fry wrote: > Hijackers should be shot! > > -- > Regards, > Mike Fry > Johannesburg > On 2011/06/12 05:45, shashi kanth wrote: > > snipped. -- You received this message because you are

Re: [DotNetDevelopment] Re: ASP.NET Session State?

2011-05-25 Thread cipto john
Hello .. asp.net work like this, when user open your page he is automatically given a Session ID. there are 3 types of session, InProc=saved on memory , StateServer=Serialize with I/O file system to the related server, SQLServer=save in and from Database. Session of asp.net has it's own expiration

[DotNetDevelopment] Re: ASP.NET Session State?

2011-05-25 Thread Davej
Ah, you are right. Session State stores a cookie but only for the session ID. Additions don't go with the cookie. View State is for restoring the form data. Thanks. On May 25, 5:13 am, Cerebrus wrote: > Session state is not sent to the client and is in fact stored in > server memory. I think wha

[DotNetDevelopment] Re: ASP.NET Session State?

2011-05-25 Thread Cerebrus
Session state is not sent to the client and is in fact stored in server memory. I think what you want to refer to is actually called ViewState. On May 24, 9:45 pm, Davej wrote: > Ok, I'm an ASP.NET noob and I'm reviewing some basics... > > What are the best guidelines for using Session State? The

[DotNetDevelopment] Re: ASP.NET code privacy?

2011-05-08 Thread Davej
Ok, thanks, since I am transitioning from using ordinary HTML pages I'm not yet comfortable with the use of dynamic pages, hence my confusion regarding aspx vs. aspx.vb privacy. Where can I find this disclaimer about "hobbyist programmers or personal sites?" It seems that my ASP textbook should WAR

[DotNetDevelopment] Re: ASP.NET code privacy?

2011-05-02 Thread Cerebrus
DataAccess controls such as the SqlDataSource are only meant for the "hobbyist programmers or personal sites" as the documentation clearly states. The only enterprise level datasource control in that toolset is the ObjectDataSource. Of course, MS always leaves us the option of rolling our own datas

[DotNetDevelopment] Re: ASP.NET code privacy?

2011-05-02 Thread Cerebrus
You are neglecting to consider a number of conceptual points: The relationship between the .aspx page and the code-behind class in VS 2002/3 was one of inheritance; the .aspx page was another class that in turn inherited from the code-behind class. In VS 2005+, the introduction of partial classes

[DotNetDevelopment] Re: ASP.NET Data Handler?

2011-02-25 Thread Davej
What is needed to get this example to work? I have no luck with it just using Visual Studio. http://triaslama.wordpress.com/2008/05/01/interacting-with-get-and-post-methods-in-aspnet/

Re: [DotNetDevelopment] Re: ASP.NET Data Handler?

2011-02-20 Thread Gunawan Hadikusumo
you can play around with global asa as well all request and authentication should go global asa On Sun, Feb 20, 2011 at 2:48 AM, Davej wrote: > Again my 2 inch thick ASP.NET book has no mention of this topic in the > index. What is a good ASP.NET book? I found this reference online; > > > h

[DotNetDevelopment] Re: ASP.NET Data Handler?

2011-02-20 Thread Davej
Again my 2 inch thick ASP.NET book has no mention of this topic in the index. What is a good ASP.NET book? I found this reference online; http://msdn.microsoft.com/en-us/library/system.web.ihttphandler%28v=VS.90%29.aspx On Feb 19, 4:20 am, Cerebrus wrote: > HttpHandler ? > > On Feb 19, 10:13 am

[DotNetDevelopment] Re: ASP.NET Data Handler?

2011-02-19 Thread Cerebrus
HttpHandler ? On Feb 19, 10:13 am, Davej wrote: > What would be used on an ASP.NET page to implement a data handler to > receive HTML Form POST data? For example to perhaps receive and route > some posted feedback comments to e-mail? Thanks.

Re: [DotNetDevelopment] Re: ASP.NET vs. ADO.NET?

2010-12-21 Thread Jamie Fraser
No. ADO.Net and ASP.Net both have good wikipedia pages. I'd suggest starting there. On Tue, Dec 21, 2010 at 4:35 AM, Davej wrote: > On Dec 3, 8:27 am, Stephen Russell wrote: > > On Wed, Dec 1, 2010 at 11:48 PM, Davej wrote: > > > Basically (excuse the pun) which is which? > > > > pun back at

Re: [DotNetDevelopment] Re: ASP.NET vs. ADO.NET?

2010-12-21 Thread Stephen Russell
On Mon, Dec 20, 2010 at 10:35 PM, Davej wrote: > On Dec 3, 8:27 am, Stephen Russell wrote: >> On Wed, Dec 1, 2010 at 11:48 PM, Davej wrote: >> > Basically (excuse the pun) which is which? >> >> pun back at you >> >> http://www.lmgtfy.com/?q=what+is+ASP.NET++ADO.NET >> > > Yeah great, so in VS is

[DotNetDevelopment] Re: ASP.NET vs. ADO.NET?

2010-12-20 Thread Davej
On Dec 3, 8:27 am, Stephen Russell wrote: > On Wed, Dec 1, 2010 at 11:48 PM, Davej wrote: > > Basically (excuse the pun) which is which? > > pun back at you > > http://www.lmgtfy.com/?q=what+is+ASP.NET++ADO.NET > Yeah great, so in VS is it ADO when you use File>New Project... and ASP when you us

Re: [DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-23 Thread Kevin A. Cameron
Goldie - I'm not following you, what am I not paying attention to? What do you mean by "MVC is ... a Java-based framework?" It has origins in Java or there is something inherent in MVC that depends on Java somehow? Kevin On Fri, Nov 19, 2010 at 12:30 AM, manish mhatre wrote: > It's Real thing t

[DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-21 Thread Goldie
On Nov 17, 11:03 am, Stephen Russell wrote: > > Quality is the most important feature and that only comes from the > developer and not the tool. > > So your saying coding in a NotePad(++) environment will produce the same structure and quality as a program developed in Visual Studio or Eclipse?

Re: [DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-21 Thread Kevin A. Cameron
Facebook (a large site by any means of measurement), their codebase is in PHP (then converted to C++ for making it run more efficiently on their servers). http://developers.facebook.com/blog/post/358 Kevin On Thu, Nov 18, 2010 at 3:37 AM, Ben Rainir wrote: > I am a PHP programmer for over 5 y

[DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-21 Thread Goldie
Guess you didnt read the word "TEND" did you? As i said, i have seen more PHP app's that have been so poorly coded that it takes 15 seconds for the site to load every click. On the same note, i have experienced ASP(.net) sites that have been poorly designed and take 30 seconds to load. A hobbies

Re: [DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-21 Thread manish mhatre
It's Real thing that PHP is used for small and very dynamic projects ASP.net giving very good tools to build web projects on the large basis On Thu, Nov 18, 2010 at 5:07 PM, Ben Rainir wrote: > I am a PHP programmer for over 5 years. > I've worked with PHP mixed with HTML, used with OO, and

[DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-21 Thread Goldie
Guess you have not been paying attention have you Kevin. .Net framework is in version 2 of MVC. And since MVC is nothing more than a Java-based framework it can be utilized in any core-language framework. Although, PHP and ASP(.net) have been the first to implement. Although if you like Silverl

Re: [DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-18 Thread Ben Rainir
I am a PHP programmer for over 5 years. I've worked with PHP mixed with HTML, used with OO, and also with various frameworks (ZEND, Cake, Symfony, etc), Web Services. It was easy to learn php language, but to use it correctly and professionally took 2 years. Now I'm programming in ASP.NET with VS

Re: [DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-17 Thread Kevin A. Cameron
Worth noting that MVC is not only available in the realm of managed code (ASP etc). CakePHP is an MVC framework in... you guessed it: PHP. I agree with most people here, that it's not a question of what's better, but what you're comfortable working in, who you're working with, and what your web se

Re: [DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-17 Thread Jamie Fraser
To be fair, I've seen some truly awful ASP.Net sites too. You can program badly in any language, but IMO it is easier to program well in something like ASP.Net MVC / Java JSF. You'll notice both of these things have similar fundamentals. On Wed, Nov 17, 2010 at 2:10 PM, Goldie wrote: > manish, >

Re: [DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-17 Thread Stephen Russell
On Wed, Nov 17, 2010 at 8:10 AM, Goldie wrote: > manish, >  From what i have seen you are correct only because PHP developers > tend to keep their jobs cause what they have designed is so obscure > that hardly anyone else aside from them could actually read it.  PHP > though inherently enforces ba

[DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-17 Thread Goldie
Asim, PHP and ASP are not better than each other. The main difference is there inherent utilization of the operating system they were "really" built for. ASP for IIS and PHP for Apache-based. That being said, it is really determinant on the webserver you have or are wanting host a website.

[DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-17 Thread Goldie
manish, From what i have seen you are correct only because PHP developers tend to keep their jobs cause what they have designed is so obscure that hardly anyone else aside from them could actually read it. PHP though inherently enforces bad coding behavior. ASP.Net coders tend to be able to s

[DotNetDevelopment] Re: ASP.NET vs PHP ????

2010-11-17 Thread Goldie
Santhosh, You very WRONG on the client side scripting. ASP is not a Client-Side scripting language anymore. WIth the publication of the .Net framework, ASP has transitioned into a Server- Side AND/OR Client-Side language. Some of the best websites i have built incorporated both aspects to

[DotNetDevelopment] Re: Asp.net c#. Outputting a Word Table using XML

2010-11-01 Thread stapes
Well I got this to work - eventually - without necessarily understanding the XML behind it.I cut & pasted all the XML garbage from either side of my data in the template - and it worked. Here is my code for writing that table: if (noOfItems > 0) { // table header row

[DotNetDevelopment] Re: Asp.net c#. Outputting a Word Table using XML

2010-10-29 Thread stapes
You have made me laugh heartily if nothing else. I love the 'Let me Google that for you' link.Thanks for reading material. On 29 Oct, 15:26, Stephen Russell wrote: > On Fri, Oct 29, 2010 at 9:14 AM, stapes wrote: > > Read up on XSLT - I wouldn't know where to start. Finding any info > > whatsoev

Re: [DotNetDevelopment] Re: Asp.net c#. Outputting a Word Table using XML

2010-10-29 Thread Stephen Russell
On Fri, Oct 29, 2010 at 9:14 AM, stapes wrote: > Read up on XSLT - I wouldn't know where to start. Finding any info > whatsoever is not easy. I find Microsofts own info particularly > useless - never shows you any proper examples of how to use stuff. > Instead, their technical pages are mostly use

[DotNetDevelopment] Re: Asp.net c#. Outputting a Word Table using XML

2010-10-29 Thread stapes
Read up on XSLT - I wouldn't know where to start. Finding any info whatsoever is not easy. I find Microsofts own info particularly useless - never shows you any proper examples of how to use stuff. Instead, their technical pages are mostly useless examples of newspeak. Personally, I find the forum

[DotNetDevelopment] Re: ASP.NET C# How to perform scheduled tasks

2010-09-16 Thread Samresh
I think this might be helpful http://msdn.microsoft.com/en-us/magazine/cc163821.aspx#S1 On Sep 15, 6:11 pm, adithya reddy wrote: > use operating system tasks to schedule your jobso that this job runs and > checks for expiry date... > > it can be debugged with visual studio just attach to pro

[DotNetDevelopment] Re: ASP.NET C# How to perform scheduled tasks

2010-09-15 Thread Benj Nunez
Yes it is possible. I believe it would be best for you to try your solution as a console- based program first and then call it using the Windows Scheduler. If it works, then you may (if you will), want to re-write it as a windows service and let your asp.net application use it. Here are some lin

Re: [DotNetDevelopment] Re: ASP.NET gridview with fixed header and columns for IE 8

2010-08-26 Thread Stephen Russell
On Thu, Aug 26, 2010 at 10:26 AM, R wrote: > This solution does not work with IE 8 --- Nor Firefox. -- Stephen Russell Sr. Production Systems Programmer CIMSgts 901.246-0159 cell

[DotNetDevelopment] Re: ASP.NET gridview with fixed header and columns for IE 8

2010-08-26 Thread R
This solution does not work with IE 8 On Aug 25, 7:37 pm, "jaicon.marm...@gmail.com" wrote: > > .gvFixedHeader > { >     position:relative;} > >   > > ScrollBars="Auto"> >         >         >         > > > On 25 ago, 12:38, R wrote: > > > > > Does anybody have a working example of a

[DotNetDevelopment] Re: ASP.NET gridview with fixed header and columns for IE 8

2010-08-25 Thread jaicon.marm...@gmail.com
.gvFixedHeader { position:relative; } On 25 ago, 12:38, R wrote: > Does anybody have a working example of a gridview where we can freeze > the header and first few columns? I saw several approaches online but > none of them works with IE 8.

Re: [DotNetDevelopment] Re: asp.net

2010-07-27 Thread Stephen Russell
On Tue, Jul 27, 2010 at 10:38 AM, Cerebrus wrote: > Rather than posting the same thing five times (duplicates removed > during moderation), you could have invested the same effort to make > more sense in a single post. > > And read the Group's welcome message if you're still wondering why > your p

[DotNetDevelopment] Re: asp.net

2010-07-27 Thread Cerebrus
Rather than posting the same thing five times (duplicates removed during moderation), you could have invested the same effort to make more sense in a single post. And read the Group's welcome message if you're still wondering why your posts don't appear immediately. -- Cerebrus. Group Moderator

[DotNetDevelopment] Re: ASP.NET MVC is 2x slower than Spring MVC

2010-07-26 Thread ThanderMaX
http://msdn.microsoft.com/en-us/library/5dws599a(VS.71).aspx http://nicholas.piasecki.name/blog/2009/02/on-web-gardens-aspnet-and-iis-60/ http://blog.animesh.co.in/2009/06/web-farm-vs-web-gardening.html http://www.iis-aid.com/articles/performance_testing/boosting_performance_using_an_iis_web_garden

Re: [DotNetDevelopment] Re: ASP.NET MVC is 2x slower than Spring MVC

2010-07-25 Thread Peter Chiu
I am running IIS7. What is the default Max Worker Process? Do I have to manually adjust it to more than 1? Regards Peter On Sat, Jul 24, 2010 at 6:19 PM, ThanderMaX wrote: > Have you enabled the "Web Gardening" ? (or Changing Max Worker Process > to more than 1) . > > You can do it "Application

[DotNetDevelopment] Re: ASP.NET MVC is 2x slower than Spring MVC

2010-07-24 Thread ThanderMaX
If possible, (i.e. depending upon your application architecture) create different application pool to handle specific parts of your application. Splitting your application and increasing application pool will not create session related problem and in fact it may improve performance. If you want t

[DotNetDevelopment] Re: ASP.NET MVC is 2x slower than Spring MVC

2010-07-24 Thread ThanderMaX
Have you enabled the "Web Gardening" ? (or Changing Max Worker Process to more than 1) . You can do it "Application Pools" view, select "Advanced Settings" and change the value (Default is 1). But beware, enabling web gardening might cause spurious session related bugs (rare but it's your app co

Re: [DotNetDevelopment] Re: asp.net XML file creation

2010-06-22 Thread Stephen Russell
On Tue, Jun 22, 2010 at 5:14 AM, sunil wrote: > hi its simple > > create the object of dataset > fill it with the required data > and write dataset.writeXML("folder path") > > the code is  as simple > >  ds = New DataSet > dataadapter.Fill(ds, "keyword") > ds.WriteXml("D:\\keywords.xml") > ---

[DotNetDevelopment] Re: asp.net XML file creation

2010-06-22 Thread sunil
hi its simple create the object of dataset fill it with the required data and write dataset.writeXML("folder path") the code is as simple ds = New DataSet dataadapter.Fill(ds, "keyword") ds.WriteXml("D:\\keywords.xml") On Jun 22, 7:51 am, Rifky Rafeethu wrote: > Thanks Russell, > > i have go

[DotNetDevelopment] Re: asp.net XML file creation

2010-06-16 Thread Cerebrus
Too scant information. On Jun 15, 1:23 pm, Rifky Rafeethu wrote: > Hi all, > > even though i'm a member of this for few months, this is my first > discussion. > > my issue is, i'm working on a asp.net project. i need to create a xml > file in the server when the user click a button. > the file mu

[DotNetDevelopment] Re: [Asp.net] Problem with Dropdownlist and Sessionstate

2010-05-14 Thread koro
Are you sure it's returning a null value. It appears as though you're assigning an object containing properties to an int through conversion here: id_vendor = Convert.ToInt32(ddlVendor.SelectedItem.Value) (and a couple other places). Try something alone the lines of: id_vendor = Convert.ToInt32(dd

Re: [DotNetDevelopment] Re: ASP.NET and MySQL

2010-03-13 Thread Amir kochak
Ok, I'll send you the sample project on your id.. On Fri, Mar 12, 2010 at 10:28 AM, Anil Srivastava wrote: > Amir > give the url > my mail id is > anilsri...@gmail.com > > > On 2/17/10, amir wrote: >> >> I have worked on this. If any one needs code please send me a mail. >> I'll give you the sam

Re: [DotNetDevelopment] Re: ASP.NET and MySQL

2010-03-11 Thread Anil Srivastava
Amir give the url my mail id is anilsri...@gmail.com On 2/17/10, amir wrote: > > I have worked on this. If any one needs code please send me a mail. > I'll give you the sample projects. > > Thanks & Regards > Amir K > Web Solution Developer. > > On Feb 12, 9:04 pm, KeidrickP wrote: > > yep, > >

[DotNetDevelopment] Re: ASP.NET and MySQL

2010-02-16 Thread amir
I have worked on this. If any one needs code please send me a mail. I'll give you the sample projects. Thanks & Regards Amir K Web Solution Developer. On Feb 12, 9:04 pm, KeidrickP wrote: > yep, > that and you only need to select the columns that you need rather than > everything from the table.

[DotNetDevelopment] Re: Asp.NET Connectivity

2010-02-16 Thread amir
You haven't set Command.Connection Property. On Feb 16, 9:27 am, Sunilsingh wrote: > Hi Santosh >                Try this > > try > { >  con = new SqlConnection(); >        con.ConnectionString = "Data Source=santhosh;Initial > Catalog=ecop;User ID=sa;Password=test"; >        con.Open(); >      

[DotNetDevelopment] Re: ASP.NET 1.1

2009-11-16 Thread m.quinn0909
Hi, I would make sure you have all .net frameworks installed not that I think this will sort your problem. if you place cssClass="myClass" as an attribute in your textbox control then reference this in your css file it should work fine. Good luck Sent from my iPhone On Nov 16, 12:16 pm, songs.

[DotNetDevelopment] Re: ASP.Net URL Rewrite problem in server 2008

2009-10-21 Thread QC
Following links might help you on understanding about IIS7 and ASP.Net - by the way let me tell me there is no such relation with windows 2008 Understanding Sites, Applications, and Virtual Directories in IIS 7.0 - http://ashishkhandelwal.arkutil.com/?p=502 Creating IIS7 sites, applications, and

[DotNetDevelopment] Re: ASP.Net Clear Result Label on Validation Error

2009-10-07 Thread Andrew Badera
Happy to help, glad it worked out for you. You could also probably look at overriding Validate (still call base.Validate) and clear your label text when the page normally validates. ∞ Andy Badera ∞ +1 518-641-1280 ∞ This email is: [ ] bloggable [x] ask first [ ] private ∞ Google me: http://www.g

[DotNetDevelopment] Re: ASP.Net Clear Result Label on Validation Error

2009-10-07 Thread littleccguy
Excellent Andy! I set the controls CausesValidation to false. In my button_click event I did this: lblResults.Text = " "; Page.Validate(); If(Page.IsValid) { ...your code here } Thank you so much. I think I read something about that a more than a few pages this morning, but the light did not

[DotNetDevelopment] Re: ASP.Net Clear Result Label on Validation Error

2009-10-07 Thread Andrew Badera
http://msdn.microsoft.com/en-us/library/0ke7bxeh.aspx ∞ Andy Badera ∞ +1 518-641-1280 ∞ This email is: [ ] bloggable [x] ask first [ ] private ∞ Google me: http://www.google.com/search?q=andrew%20badera On Wed, Oct 7, 2009 at 9:22 AM, littleccguy wrote: > > Well, before I go posting all of th

[DotNetDevelopment] Re: ASP.Net Clear Result Label on Validation Error

2009-10-07 Thread littleccguy
Well, before I go posting all of the page asp code and the code behind and the called class for a very simple idea, let me clarify. When I say 'validations', I am talking about the built in validators provided in VS. I have a textbox and ask you to enter a number between 1 and 100. If you enter

[DotNetDevelopment] Re: ASP.Net Clear Result Label on Validation Error

2009-10-07 Thread Andrew Badera
I learned a neat trick today. Telepathy via email! Or not. Show us your code, but put it up on http://dotnetdevelopment.pastebin.com/ not in an email. ∞ Andy Badera ∞ +1 518-641-1280 ∞ This email is: [ ] bloggable [x] ask first [ ] private ∞ Google me: http://www.google.com/search?q=andrew%20ba

[DotNetDevelopment] Re: ASP.Net URL Rewrite problem in server 2008

2009-09-15 Thread Kadir Avci
Ups. Sorry my mistake. I'm using urlrewritingNetrewrite method. Here is the orijinal web site. Can't IIS 7 support it? Do you know anything about that? http://www.urlrewriting.net/160/en/documentation.html Kadir Avcı | Software Developer Freelance Web Designer web: www.kad1r.com mob: +90 555 676

[DotNetDevelopment] Re: ASP.Net URL Rewrite problem in server 2008

2009-09-15 Thread Andrew Badera
Thanks Kadir. IIS7 has its own URL rewriting built-in I believe, or downloadable as an add-in module. I'm pretty sure it's there by default, or can be specified in Features & Roles for the server. Before you spend more time on this, I'd recommend taking a look at the built-in rewriting in IIS7.

[DotNetDevelopment] Re: ASP.Net URL Rewrite problem in server 2008

2009-09-15 Thread Andrew Badera
Given that you don't tell us WHAT "rewrite method" you're using ... what help can we possibly give you? Provide proper detail please. ∞ Andy Badera ∞ +1 518-641-1280 ∞ This email is: [ ] bloggable [x] ask first [ ] private ∞ Google me: http://www.google.com/search?q=andrew%20badera On Tue, Se

[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-08 Thread Processor Devil
I think he has found answer elsewhere or fix the problem himself but doesn't want to post the correct code here :) 2009/9/7 Andrew Badera > > OP, > > I'm feeling kind even though you failed to use > http://dotnetdevelopment.pastebin.com > > One, why are you dealing with "rprofile" and "userprofi

[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-08 Thread Kassa
try Session.adandon on logout...also use session.abandon in global.asax in Application_Start and Application_End event On Sep 7, 3:29 pm, Andrew Badera wrote: > OP, > > I'm feeling kind even though you failed to > usehttp://dotnetdevelopment.pastebin.com > > One, why are you dealing with "rprof

[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-07 Thread Andrew Badera
OP, I'm feeling kind even though you failed to use http://dotnetdevelopment.pastebin.com One, why are you dealing with "rprofile" and "userprofile" in Session? Why not a single session value for a single session entity? (Unless there are multiple profile types?) Two, I suspect your "session ID"

[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-06 Thread Andrew Badera
Yeah, got that from your link prior. 2009/9/6 Raghupathi Kamuni : > http://msdn.microsoft.com/en-us/library/system.web.sessionstate.httpsessionstate.add.aspx > > public void Add( >     string name, >     Object value > ) > > if (!String.IsNullOrEmpty(TextBox1.Text) & >     !String.IsNullOrEmpty

[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-06 Thread Raghupathi Kamuni
http://msdn.microsoft.com/en-us/library/system.web.sessionstate.httpsessionstate.add.aspx public void Add( string name, Object value ) if (!String.IsNullOrEmpty(TextBox1.Text) & !String.IsNullOrEmpty(TextBox2.Text)) { string itemName = Server.HtmlEncode(TextBox1.Text); string itemVa

[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-04 Thread Andrew Badera
Interesting, thanks,I tried to get that from searching in a MSDN/VB.NET perspective yesterday (briefly) and couldn't find it. What value does .Add add? Does it simply wrap in null checks under the hood? ∞ Andy Badera ∞ +1 518-641-1280 ∞ This email is: [ ] bloggable [x] ask first [ ] private ∞ Go

[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-03 Thread Raghupathi Kamuni
http://msdn.microsoft.com/en-us/library/aa287725(VS.71).aspx On Thu, Sep 3, 2009 at 10:58 PM, Andrew Badera wrote: > > a) paste it on pastebin.com. I'm not looking at any more of your code > until you do. You've lazily pasted an avalanche of text while asking > for help. Why should people volunt

[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-03 Thread Andrew Badera
a) paste it on pastebin.com. I'm not looking at any more of your code until you do. You've lazily pasted an avalanche of text while asking for help. Why should people volunteering to help you give themselves a headache doing so? I refuse to do so. b) what is "Session.Add" ??? To add a value, even

[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-03 Thread Gerard
here is some of the code: Login Page: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Template.SetSmartPage(Me) Template.SetKeyCodeEvent(Me.txt_UserID, KeyMode.ToUpperCase) If Not Me.IsPostBack Then Template.SetI

[DotNetDevelopment] Re: Asp.net User Control access question

2009-09-03 Thread WY
Hello Cerebrus, Peter I thank both of you for your response. I realize that I wasn't clear enough and would like to illustrate using my real example. Regarding your question Peter, the content page is an asp.net page that has a master page attached to it. There is a user control which contains

[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-02 Thread Andrew Badera
On Wed, Sep 2, 2009 at 4:42 AM, Gerard wrote: > > Dear sir or madam, > > I have the problem to our web application using asp.net 2.0. The > problem is that when user A login and then user B login, user A > creates an item and saved. However, the item's created by and updated > by are mentioned tha

[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-02 Thread Processor Devil
there can be some problem with variables (while saving you probably use variable filled with user B's initials instead of Session value as you should... 2009/9/2 Gerard > > Dear sir or madam, > > I have the problem to our web application using asp.net 2.0. The > problem is that when user A login

[DotNetDevelopment] Re: Asp.net User Control access question

2009-09-01 Thread Cerebrus
You say "as well as a user control (data grid)". What does that mean ? A Datagrid is not a usercontrol but a usercontrol can contain a Datagrid. Where does the textbox fit into the picture? As for using the FindControl() method, I want to clarify that it is a function that utilizes both reflectio

[DotNetDevelopment] Re: Asp.net User Control access question

2009-09-01 Thread Peter Smith
Access them in your code behind? Or does 'content page' mean something I don't understand? :) If the user control is a standalone, tying it to the page destroys the reusability of the control, doesn't it? I thought user controls were supposed to be agnostic to their containers?

[DotNetDevelopment] Re: asp.net help

2009-08-06 Thread Cerebrus
Okay, Brandon has much better observation than I do... I never realized from your first post that the input tags were missing a runat="server" attribute. It is quite natural that any page elements that lack this attribute will not be accessible at the server. Please try Brandon's suggestion and if

[DotNetDevelopment] Re: asp.net help

2009-08-06 Thread Tim Dawg
Ok for sake of brevity I'm going to shorten the code so hopefully you can see what I'm trying to do.

[DotNetDevelopment] Re: ASP.net Scrollable Gridview in a User Control

2009-08-06 Thread Gunawan Hadikusumo
Scrollable GridView ? You meant horizontal scrolling ? Just encapsulate grid view in control panel. Then set stylesheet of that panel to : overflow-x:scroll; . That's all you need 2 do. On 8/5/09, Yashika wrote: > http://csharpdotnetfreak.blogspot.com/search/label/GridView?max-results=5 > read t

[DotNetDevelopment] Re: asp.net help

2009-08-05 Thread Brandon Betances
>From first glance, I see you need to do the following, and it MIGHT work. 1.) add a runat="server" tag to the hidden field. 2.) Cast the hidden field when you do the GetControl method. Again, it MIGHT work. On Wed, Aug 5, 2009 at 2:04 PM, Cerebrus wrote: > > It would be difficult to give a def

[DotNetDevelopment] Re: asp.net help

2009-08-05 Thread Cerebrus
It would be difficult to give a definitive answer without seeing the markup of your FormView (especially with relevance to the hidden fields). And no, you can pass a value via Javascript to any control that is rendered on the client. They all are accessible to client script if they are rendered a

[DotNetDevelopment] Re: asp.net help

2009-08-05 Thread Tim Dawg
HI Yashika, Thanks for the reply but it looks like the document.getElementByID is for Javascript while I'm looking to pull the input from a hidden input tag into the code side of an ASP.Net page. Thanks again, -Tim On Aug 5, 12:20 pm, Yashika wrote: > hope this wil help u > > document.getEle

[DotNetDevelopment] Re: asp.net help

2009-08-05 Thread Yashika
hope this wil help u document.getElementById("<%=Text1.ClientID%>") On 8/5/09, Tim Dawg wrote: > > > Hello all, > > I'm a relatively new ASP.net programmer and am having a problem I'm > hoping one of you pros out there can help me out with. I've got a > formview setup and working properly howev

[DotNetDevelopment] Re: ASP.net Scrollable Gridview in a User Control

2009-08-05 Thread Yashika
http://csharpdotnetfreak.blogspot.com/search/label/GridView?max-results=5 read this artical will help u On 8/5/09, rodrigo.defavari wrote: > > > Hello all, > > I found many many times in the internet, how do a scrollable GridView. > However I need to do it on Web User Control. I tried some ways

[DotNetDevelopment] Re: ASP.NET Session Retention Issue

2009-07-21 Thread ap
Just wanted to update that I found out why this session behavior was occurring. It turns out this was the default behavior of the browser. It was hard to find the article (retired KB content), but hopefully it will save someone else a lot of time: http://support.microsoft.com/kb/323752 On Jul 21,

[DotNetDevelopment] Re: ASP.NET Session Retention Issue

2009-07-21 Thread ap
Yes, outside the iframe, there does not seem to be any issue. One other thing to note: The application is using its own Application Pool, and the maximum number of worker processes is set to 1. Any ideas as to what may be causing this problem? Any help would be greatly appreciated. On Jul 21, 4:

[DotNetDevelopment] Re: ASP.NET Session Retention Issue

2009-07-21 Thread Processor Devil
so when you don't use iframe, the result is ok? 2009/7/20 ap > > We are using a third party web application portal that links to our > ASP.NET application, and experiencing a strange session > issue. > > The way that it is expected to work is: > > 1. A user submits a form on th

[DotNetDevelopment] Re: ASP.NET Membership API

2009-06-12 Thread Juan M. Oviedo
Hey man, I didn't mean to, I was always using my original thread. Juan M. Oviedo > Date: Thu, 11 Jun 2009 22:39:44 -0700 > Subject: [DotNetDevelopment] Re: ASP.NET Membership API > From: zorg...@sify.com > To: DotNetDevelopment@googlegroups.com > > > No

[DotNetDevelopment] Re: ASP.NET Membership API

2009-06-11 Thread Cerebrus
No idea how "Juan M. Oviedo's" question got intermingled with this thread. Weird, I tells ya ! ;-) -- Cerebrus. Group Moderator. On Jun 11, 10:38 pm, "Scott K." wrote: > A majority of websites show the answer to their user's security > question.  Passwords are encrypted.  It is overkill to encr

[DotNetDevelopment] Re: ASP.NET Membership API

2009-06-11 Thread Scott K.
A majority of websites show the answer to their user's security question. Passwords are encrypted. It is overkill to encrypt the security answer as well. How the hell did this thread get changed?!? On Jun 10, 2:54 pm, Brandon Betances wrote: > Major security breach why would you want to do th

[DotNetDevelopment] Re: ASP.NET Membership API

2009-06-10 Thread Brandon Betances
Major security breach why would you want to do that? On Wed, Jun 10, 2009 at 12:36 PM, Scott K. wrote: > > I'm trying to figure out if there is a setting to allow PasswordAnswer > in the Membership table to be stored as plain text (PasswordQuestion > already is) while still having the PasswordFor

[DotNetDevelopment] Re: ASP.NET Membership / Login Question

2009-05-12 Thread CallMeLaNN
OIC, I never use the profile to add additional user info. Yes I remember it just 2/3 columns, because you can add a record (a user info) dynamically with fixed column. Maybe it just like key value pair implementation in db table. key is your expected column name. So each user can contain any key

[DotNetDevelopment] Re: ASP.NET Membership / Login Question

2009-05-12 Thread Vivek SHANTHARAM
1) I would suggest you to create two separate tables - one for user info and other for the all possible roles. 2) You can maintain the user info in session. 3) And you can create a security class that will be called\implemented in every page or probably master page, that will implement the role ac

[DotNetDevelopment] Re: ASP.NET Membership / Login Question

2009-05-12 Thread Cerebrus
I think I understand your problem... Here are two MSDN articles you should read carefully: 1. Implementing a Membership Provider - Lists guidelines to keep in mind when implementing your own Provider. Also lists the members that you need to override from the base class (and its base class - Prov

[DotNetDevelopment] Re: ASP.NET Membership / Login Question

2009-05-12 Thread Michael_Burgess
Hi there, Thanks for the reply. I probably knew it wouldn't make much sense! I'm new to membership stuff yeah. Just don't like the way that additional profile info is stored in like 2 or 3 columns by default. I want to be able to knock up some reports and other things that may need user profile

[DotNetDevelopment] Re: ASP.NET Membership / Login Question

2009-05-12 Thread CallMeLaNN
I'm not really understood on what you write here. What I know is, you are still new in membership, role and profile. Sorry if I'm wrong. using asp.net membership in user login is more secure and easy. There is a lots of features including password hashing, lock user if password fail more than ce

  1   2   >