|
neither in explorer nor in firefox
Dont Get Paid for the Hours you worked, Get Paid for the Work You Have Done in an Hour.
|
|
|
|
|
OK post your code
Check the tab isn't set to visible = false as well
|
|
|
|
|
<asp:scriptmanager id="ScriptManager1" runat="server">
<ajaxtoolkit:tabcontainer id="TabContainer1" runat="server" activetabindex="1" height="206px">
Style="z-index: 17; left: 0px; position: absolute; top: 0px">
<ajaxtoolkit:tabpanel id="TabPanel1" runat="server" headertext="TabPanel1">
<contenttemplate>
<asp:textbox id="TextBox1" runat="server" style="z-index: 100; left: 54px; position: absolute;<br mode=" hold=" /"> top: 159px">
<asp:button id="Button1" runat="server" style="z-index: 102; left: 230px; position: absolute;<br mode=" hold=" /"> top: 158px" Text="Button" />
<headertemplate>
Source
<ajaxtoolkit:tabpanel id="TabPanel2" runat="server" headertext="TabPanel2">
<contenttemplate>
<asp:label id="Label1" runat="server" style="z-index: 100; left: 122px; position: absolute;<br mode=" hold=" /"> top: 165px" Text="Label">
<asp:textbox id="TextBox2" runat="server" style="z-index: 102; left: 185px; position: absolute;<br mode=" hold=" /"> top: 163px">
<headertemplate>
Destination
Dont Get Paid for the Hours you worked, Get Paid for the Work You Have Done in an Hour.
|
|
|
|
|
try removing all style attributes from the code and see if it shows then
|
|
|
|
|
its working on other systems...thanks for your response do u know how to uninstall ajax tool kit ?
Dont Get Paid for the Hours you worked, Get Paid for the Work You Have Done in an Hour.
|
|
|
|
|
go to add remove programs on the server maybe
what was the solution to the problem with the code?
|
|
|
|
|
everything was working fine.... i dont know why now its not working ....and
its not present in add or remove
Dont Get Paid for the Hours you worked, Get Paid for the Work You Have Done in an Hour.
|
|
|
|
|
How can i close a popup window in vb.net 2005 ?
Thanks in advance.
Sekhar
|
|
|
|
|
You have to control the popup using Javascript; not vb.net.
Check the following link[^].
*jaans
|
|
|
|
|
btn_close.Attributes.Add("onclick", "window.close(); return false;");
|
|
|
|
|
I am using CheckBox in my web form.But checked status always shownig false, Even I select that checkbox and I am also using Master Page in my Webform
Do you have any Idea.
Thank & Regards
Vijay s
|
|
|
|
|
hmm unless you have it set to false in the tag?
Is there anything happening on the checkbox check i.e. someone ticks the box and a postback occurs?
Can you post some of your code?
|
|
|
|
|
I am Using this simple code
if (chkA.Checked == true)
gType = "A,";
if (chkC.Checked == true)
gType += "C,";
if (chkH.Checked == true)
gType += "H,";
// gType = gType.Substring(0, gType.Length - 1);
Thank & Regards
Vijay s
|
|
|
|
|
Thanks for reply,I got the solution.
Thank & Regards
Vijay s
|
|
|
|
|
|
probably AutoPostBack="true"
|
|
|
|
|
Problem is my side.I only assigned "false" to that checkbox for some other reason in page load event.I dint notice that.thank you
Thank & Regards
Vijay s
|
|
|
|
|
You know you can use Page_Init(Object sender, EventArgs e) event?
In that even you can set default values. The Init is only executed at first load of the page.
|
|
|
|
|
iam having a login page where password is to be checked .it has to be checked whether caps lock is on or not when the page is loaded for the first time.
|
|
|
|
|
Javascript example: http://jdstiles.com/java/checkforcaps.html
this took me 5 seconds to find, could you not do that?
|
|
|
|
|
thnks for u help..
that i saw mr and also implemented but iwatn to work like xp login ie for the first time when page is loaded and caps lock is already pressed on...then message to get.
this took me 5 seconds to find, could you not do that? sir after doing this only i got dought and asked the question ...
|
|
|
|
|
so if the page loads, and caps lock is on then you want the message to appear as soon as the page loads rather then when they click to log in?
|
|
|
|
|
I'm not sure if you can do that without them beginning to type
|
|
|
|
|
string filename = "";
try
{
if (((FileUpload)EmployeeDetailsView.FindControl("FUploadCVInsert")).HasFile)
{
filename = System.IO.Path.GetFileName(((FileUpload)EmployeeDetailsView.FindControl("FUploadCVInsert")).PostedFile.FileName);
((FileUpload)EmployeeDetailsView.FindControl("FUploadCVInsert")).SaveAs(Request.PhysicalApplicationPath + "/Download CV");
}
else
{
filename = ((HiddenField)EmployeeDetailsView.FindControl("HiddenField1")).Value.ToString();
}
}
catch (Exception ex)
{ throw ex; return; }
--------------------------------
iam using this code to save customers cv to specifiy folder on server but i have error 'access deined' instead i give this folder all plivigers for read and write
help me plz
md_refay
|
|
|
|
|
Can you post your file location address that you are posting to?
Sometimes you can release access to a folder which is in another restricted folder, therefore unable to upload file
Try a different folder which is nearer the root and see if that works too
|
|
|
|