Search Results

Showing results 1 to 40 of 93
Search took 0.02 seconds.
Search: Posts Made By: serkan sendur ; Forum: ASP.NET and child forums
Forum: ASP.NET Sep 25th, 2009
Replies: 5
Views: 334
Posted By serkan sendur
mark as solved then.
Forum: ASP.NET Sep 25th, 2009
Replies: 5
Views: 334
Posted By serkan sendur
there are many accordion menu javascripts out web. search google with those keywords.
Forum: ASP.NET Sep 25th, 2009
Replies: 5
Views: 334
Posted By serkan sendur
you can insert some javascript to do what you want but i dont think it is a good idea. you dont know the internal workings of those built-in ajax toolkit controls, so you may get unexpected results...
Forum: ASP.NET Sep 24th, 2009
Replies: 7
Views: 326
Posted By serkan sendur
ok then, mark the thread as solved.
Forum: ASP.NET Sep 24th, 2009
Replies: 7
Views: 326
Posted By serkan sendur
also post how you call StreamFile(ByVal Q As String),
i think your parameter has a problem. and also post the exact path you want to specify.
Forum: ASP.NET Sep 24th, 2009
Replies: 7
Views: 326
Posted By serkan sendur
Forum: ASP.NET Sep 24th, 2009
Replies: 7
Views: 326
Posted By serkan sendur
As far as i know, tilde does not mean anything unless you use it at the very beggining of your path, in which case it would refer to your root application folder. I think you should use...
Forum: ASP.NET Sep 17th, 2009
Replies: 10
Views: 2,456
Posted By serkan sendur
Just in case you cant run the attachment :
Default.aspx :

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD...
Forum: ASP.NET Sep 17th, 2009
Replies: 10
Views: 2,456
Posted By serkan sendur
working sample is attached to this post.
Forum: ASP.NET Sep 17th, 2009
Replies: 10
Views: 2,456
Posted By serkan sendur
here you go :

<script language="javascript" type="text/javascript">
// <!CDATA[

function Button1_onclick() {
var inputs = document.forms[0].elements;
for(var i=0;i< inputs.length;i++)
{...
Forum: ASP.NET Sep 17th, 2009
Replies: 10
Views: 2,456
Posted By serkan sendur
i think that method is not getElementByTagName, but getElementsByTagName, so it is plural basically. try that way.
Forum: ASP.NET Sep 17th, 2009
Replies: 4
Views: 589
Posted By serkan sendur
Forum: ASP.NET Sep 14th, 2009
Replies: 1
Views: 328
Posted By serkan sendur
you can do that using javascript.

<script language="javascript" type="text/javascript">
function stopRKey(evt) {
var evt = (evt) ? evt : ((event) ? event : null);
var node = (evt.target) ?...
Forum: ASP.NET Sep 14th, 2009
Replies: 4
Views: 589
Posted By serkan sendur
Forum: ASP.NET Sep 14th, 2009
Replies: 2
Solved: ContentType
Views: 377
Posted By serkan sendur
can it be ContentType="application/xml"/ ?
Forum: ASP.NET Sep 14th, 2009
Replies: 3
Views: 567
Posted By serkan sendur
it is a well known thing
http://rumandcode.wordpress.com/2008/08/11/javascript-confirm-on-aspnet-button/
Forum: ASP.NET Aug 27th, 2009
Replies: 4
Views: 806
Posted By serkan sendur
you can do that with javascript, post it to javascript forum. if your button is a server control then you need its clientID to change its background color. Or if you have a specific place for the...
Forum: ASP.NET Aug 19th, 2009
Replies: 10
Views: 775
Posted By serkan sendur
Forum: ASP.NET Jul 8th, 2009
Replies: 7
Views: 369
Posted By serkan sendur
http://www.asp.net/learn/videos/video-49.aspx
Forum: ASP.NET Jul 8th, 2009
Replies: 7
Views: 369
Posted By serkan sendur
you can use objectdatasource control and when configuring it there is parameter section, set it to get parameter from the first gridview then generate your select statement to fill the second...
Forum: ASP.NET Jul 2nd, 2009
Replies: 7
Views: 256
Posted By serkan sendur
missbeginner, do you know how to debug an application?
Forum: ASP.NET Jul 2nd, 2009
Replies: 7
Views: 256
Posted By serkan sendur
in other words, why dont you debug it ? :)
Forum: ASP.NET Jul 2nd, 2009
Replies: 7
Views: 256
Posted By serkan sendur
when i was a beginner and asked such questions, my co-workers would ask me "have you debugged the code". that is what i suggest to you, put a break point to your switch case and then start debugging....
Forum: ASP.NET Jun 29th, 2009
Replies: 10
Views: 775
Posted By serkan sendur
i think what you need is a self-referencing table, so the records will have two fields one of which is primary key and the other one is foreign key to its parent. by doing that you can have limitless...
Forum: ASP.NET Jun 22nd, 2009
Replies: 15
Views: 1,349
Posted By serkan sendur
instead of client-side use viewstate which is more secure, or you can write to cookies of the user, which is not hundred percent sure as user might have disabled them. search google with using...
Forum: ASP.NET Jun 20th, 2009
Replies: 15
Views: 1,349
Posted By serkan sendur
i am glad that you figured it out but for future visitors let me show what must be modified :

<asp:TextBox runat="server" ID="monday" onkeyup="TextChanged" />

function TextChanged() {
...
Forum: ASP.NET Jun 20th, 2009
Replies: 15
Views: 1,349
Posted By serkan sendur
Forum: ASP.NET Jun 19th, 2009
Replies: 15
Views: 1,349
Posted By serkan sendur
mhm the problem is this, i didnt look at your javascript code, when a server control is rendered to a browser, its id changes. you can either pass the generated id from code as...
Forum: ASP.NET Jun 19th, 2009
Replies: 15
Views: 1,349
Posted By serkan sendur
remove onkeyup from this section
asp:TextBox runat="server" ID="monday" onkeyup="TextChanged" />
it should be only added from code behind and during page load event. you are trying to add the same...
Forum: ASP.NET Jun 19th, 2009
Replies: 15
Views: 1,349
Posted By serkan sendur
just go to your page load event of your page then you are going to add this javascript events to your asp.net texbox controls as follows:
...
Forum: ASP.NET May 21st, 2009
Replies: 4
Views: 1,637
Posted By serkan sendur
http://www.daniweb.com/forums/thread78963.html
Forum: ASP.NET May 4th, 2009
Replies: 10
Views: 1,353
Posted By serkan sendur
you said you dont have update panels, i see that you have update panels and script managers on your page. as i said this problem is caused by that update panels. if it is not necessary to have them...
Forum: ASP.NET May 4th, 2009
Replies: 10
Views: 1,353
Posted By serkan sendur
why dont you post mark up of your web page? it is hard to infer something without seeing it.
Forum: ASP.NET May 2nd, 2009
Replies: 10
Views: 1,353
Posted By serkan sendur
that problem occurs in ajax enabled websites as far as i experienced.
Forum: ASP.NET May 1st, 2009
Replies: 10
Views: 1,353
Posted By serkan sendur
remove update panels then try again.
Forum: ASP.NET Mar 15th, 2009
Replies: 3
Views: 789
Posted By serkan sendur
here is the webform1.aspx :

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication3.WebForm1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...
Forum: ASP.NET Mar 15th, 2009
Replies: 1
Views: 780
Posted By serkan sendur
i think inheriting from sqlmembership provider is better, if that is what you mean by custommembership provider. Or you can create your own role and member classes and database tables without...
Forum: ASP.NET Feb 28th, 2009
Replies: 1
Views: 646
Posted By serkan sendur
in asp.net you dont need to code that thing, there is an adrotator control that does it automatically for you.
Forum: ASP.NET Feb 22nd, 2009
Replies: 2
Views: 606
Posted By serkan sendur
you should use these in web.config file, not within your html tags.
Forum: ASP.NET Feb 15th, 2009
Replies: 2
Views: 432
Posted By serkan sendur
msdn library is the best reference book. if you want to learn asp.net well, try apress books.
Showing results 1 to 40 of 93

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC