|
Christian Graus wrote: Assuming there is a double click event at all ( and if not, you could fake one )
Done that and its working fine.
Christian Graus wrote: you just hook that up to javascript, which calls the script to fire the OK button.
Are you referring to PageMethods.MethodName() ? I don't want to use it since it will make the event a WebMethod.
जय हिंद
|
|
|
|
|
Hi i added tag in masterpage and i added same tagprefix & tagname in which i declred globally..just go through my code..i added tagprefix users & tagname Menus..
The error coming like Menus is not a known element...
can anyone answer?
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="NDIMaster.master.cs" Inherits="NDI.NDIMaster" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajax" %>
<%@ Register TagPrefix="user1" TagName="Menus" Src="~/UserControl/Menus.ascx" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server" id="nMaster">
<link href="NDI.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="fmaster" runat="server">
<asp:ScriptManager ID="smNDI" runat="server"/>
<div class="content1"> <asp:ContentPlaceHolder ID="Cph1" runat="server" /> </div>
<div class="header1"><user1:Menus runtat="server" vissible="true" id="menu1"> </user1:Menus></div>
<div class="footer" id="footerContent">
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
</tr>
</table>
</div>
</form>
</body>
</html>
|
|
|
|
|
Erm, I think your missing something from your code, I can't event see a menu tag set.
Using the wrong tool for the job is half the fun.
|
|
|
|
|
hey i copied entire design page..it din't display in the webpage...
i am just copying other part of my code..follow from above..
i mentioned my menu tag in below..just go through..i can't view this code when i add it in the codeblock..when i removed the tag i can able to view this in the webpage..
i don't know..just go through my menu tag..
div class="header1"user1:Menus runtat="server" vissible="true" id="menu1" / /div
plz answer 
|
|
|
|
|
i am gettin an error in global asx file
tat theme is not an member of profile common
Protected Sub Application_PreRequestHandlerExecute(ByVal sender As Object, ByVal e As EventArgs)
Dim p As Page = TryCast(HttpContext.Current.Handler, Page)
If p IsNot Nothing Then
Dim pb As ProfileCommon = DirectCast(HttpContext.Current.Profile, ProfileCommon)
If pb IsNot Nothing Then
p.Theme = pb.Theme
End If
End If
End Sub
|
|
|
|
|
I have a page and two user controls, on page load i load first user control. The first user control has a button call next. Now all i want is to be able to click button next and load the next control which is control no 2.
Please help!!!
Back off i am coding
|
|
|
|
|
you can also load the control using code. look here[^]
Manas Bhardwaj
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
|
|
|
|
|
Thanks, still doesn't solve my problem
Let me put it this way.
I have a page with panel in it. I also have 3 user controls each with next button on it.
On page load i load the first user control on the panel.
Now i want to able to load on the page user control number 2, when i click on the button on user control 1 and so on.
Back off i am coding
|
|
|
|
|
dear all;
i need the same tab container CSS which is used in the home page of this web site
http://www.codeproject.com/
and which type of tabcontainer is used? is it ajax tabcontainer or something else in the home page of this web site
pls need feed back
Thanks in advance
|
|
|
|
|
I think some JavaScript/Dhtml menu controls are being used on the top header.
Either you love IT or leave IT...
|
|
|
|
|
dear;
thanks for reply.... still i am confused that whether DHML or ajax tabcontainer...
|
|
|
|
|
omerqq wrote: still i am confused that whether DHML or ajax tabcontainer
You want to know that only need to develop similar kind of tab control? If need to develop then you can developed it using Ajax Tab Container very quickly.
|
|
|
|
|
dear ;
ok dude ajax is good and we can use update panel with it to avoid postback .. but its still heavy on the page whenever it loads...
ok dude i think i am going to use ...but any link that has the same CSS of the home page
Thanks in advance
|
|
|
|
|
Use Ajax Tab Container. Put required CSS.
|
|
|
|
|
I have an asp.net application which uses Silverlight control.The silverlight control is loading by using a button click as a seperate window.At the same time i want to update aspx page and silverlight control,so i used a thread for handling silverlight control button click.But as a result the aspx page is not get updated,if i start the thread for the silverlight control
|
|
|
|
|
When I move a data directory containing few media files the session gets expiered. Can anybody help me out in find what is going wrong in the process of moving the directory. My session mode is 'InProc' and expiry timeout is '90' minutes. And it takes maximum 5 seconds to move the directory.
Thanks in advance.
Arindam
|
|
|
|
|
i need source code for email sending by clicking the send mail button in asp.net with c#.
please anyone help.
|
|
|
|
|
Google it you will get alot. 
|
|
|
|
|
Here[^]
Manas Bhardwaj
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
|
|
|
|
|
salahuddincse wrote: need source code for email sending by clicking the send mail button in asp.net with c#.
Here is the source code
|
|
|
|
|
I have a gridview with template field which contains some text( <%#Eval('name')%> )
I try to get this text via the server, like this: grv.Rows[0].Cells[0].Text, but I get empty string.
The datasource is valid and full of values and I wrote grv.DataBind() in the Page_Load
|
|
|
|
|
Can you paste your gridview controls source code.
|
|
|
|
|
Try finding the control and cast it back to TextBox
((TextBox)grv.Rows[0].FindControl("MyTextBox")).Text
Back off i am coding
|
|
|
|
|
u can do like this also if u have simplr grid
GridView.Row[rowindex].cells[cellindex].text ="anything";
|
|
|
|
|
Hi,
can anyone tell me how to validate float number through java script .. thanks in advance.
Thanks
Amit
|
|
|
|