|
Hi everybody,
I just wanted to know, how to avoid using tables in asp.net 3.5 UI.
There must an option (AutoPositon property) to drag and drop controls at any part of the design page.
Any early replies will be heartly appreciated.
Many thanks in advance.
regards
Sajid
Electronia Co ltd,
Alkhobar,KSA
|
|
|
|
|
Sayed Sajid wrote: how to avoid using tables in asp.net 3.5 UI.
Why you are trying to avoiding Tables.
If you want to design perfect web site that would be used in multiple web browser you should use Table. Even You can do it using DIV also. But Table i better option.
Sayed Sajid wrote: There must an option (AutoPositon property) to drag and drop controls at any part of the design page.
Its always better to desing your site only from aspx page, not by Drag and Drop Control in page, It may create lots of problem in multiple browser.
Thank you
|
|
|
|
|
Hi Abhijet,
Thanks for the answer.
Am not able to align my controls in the table columns. Apart am also not able to select multiple controls and align them.
Anyway am working on a intranet application. But still I would prefer to work avoiding tables.
I would be thankfull if you elaborate the DIV format.
Many thanks in advance.
regards
Sajid
Electronia Co Ltd,
Alkhobar - KSA
|
|
|
|
|
|
hiiiiiiiii
Here rizvan,please go in asp.net Format Meanu
please select what u want to reset then go in fromat menu the select position
u can then find the result what u want
Thanks and Regards
RIZVAN SIVALLY
Zrs Technology Pvt Ltd
www.zrstechnology.com
rizvan sivally
|
|
|
|
|
Hi,
I'm using Michael Chourdakis's very nice SSL package from here:
http://www.codeproject.com/KB/IP/ssl_sockets.aspx
I used the code as a base for a test app and its working very well, however, I'm having a strange issue.
On one remote test machine, when I run as a server in NON SSL mode, sending a few hundred bytes back and forwards, its lightening fast. I switch to SSL mode and its a little slower (due, I suppose to the encryption) but it's still fast.
However, on a second remote test machine at a different location the results vary. The NON SSL mode works lightening fast, however the SSL mode takes 30-40 seconds to complete. It connects and then there is a long period until the data is transferred back and forth, but once it starts its fast.
Is it possible that on this second machine the Certificate is being re-negotiated every time? If so, do you know if there is an app or an OS fix?
Thanks for your help,
Phil
|
|
|
|
|
Someone can help me, how to set height and width dynamically?
i try dis code
<script type="text/javascript">
function setSize(elem)
{
//find the height of the internal page
var the_height= elem.contentWindow.document.body.scrollHeight;
var the_width= elem.contentWindow.document.body.scrollWidth;
//change the height of the iframe
elem.height= the_height;
elem.width= the_width;
//alert(the_width);
}
</script>
<iframe id="Iframe1" src="Login.aspx" onload="setSize(this)" style="background-color: transparent" scrolling="no"></iframe>
iframe height function perfectly in ff,ie and chrome but iframe width not functioning in ffFrown any one can help me?
|
|
|
|
|
Try the below code
<iframe height="50px" id="frmSam" width="50px" src="http://www.google.com"></iframe>
<script type="text/javascript">
document.getElementById('frmSam').style.height="200px";
document.getElementById('frmSam').style.width="400px";
</script>
It worked fine for me.
|
|
|
|
|
hi.. yup its work.. but how do we set iframe width or height following iframe contentDocument height n width?
|
|
|
|
|
it worked but when i set src of the frame to "http://www.google.com" and it produce error said "access is denied".
what can i do now?
|
|
|
|
|
Hello,
I have created a Win32 utility which detects specific system details.
I now want to use this as a security utility.
I have no problem with publishing and running but, but I'm not able to some sort of embed it into a webpage.
The idea is to have a user type in credentials and after that, based on the information gotten back from the security utility, access is granted or denied.
What I need is a way to execute this security utility and make it send back information to the webpage which then handles it further.
I have created the security utility with C#, but if it does require VB or VC++ to complete the job, that has to be done.
One last note is, is that all users will use the Windows platform.
Thanks in advance if you have a solution!
|
|
|
|
|
You want to write an activeX dll in C++, a C# dll means your users need .NET installed. Then you can embed an activeX in a web page.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
I've done an exhaustive search for my problem on the net and either I'm not searching for the right keywords or I'm the only one having this problem. My site has several pages that utilize XML Data Islands and binding to HTML tables. The binding works flawlessly. What I need to do is loop through the rows of the table following the binding and do some conditional formatting, housekeeping, etc. An example would be to highlight every other row for easy readability.
My problem is that when I call my formatting code the data binding has not yet completed. Therefore, when I get a count of the rows its whatever it was at that moment in time. It's not complete and what I end up with is only a top portion of the table is formatted.
In an effort to wait for the data binding to fully complete I've tried various events on the Data Island, table, XMLHTTP object, etc. but to no avail. The only way I can get this to work is to call the formatting function using the setTimeout method but even then the correct number of milliseconds to wait is hit or miss.
Below is a simplified version of my code that simulates my problem. The row count returned by the getTableRowCount function is always lower than the actual number of rows that are created when the data binding finishes.
<html>
<script>
function retrieveStatusHistory() {
var xmlHttp = new ActiveXObject("MSXML2.XmlHttp");
xmlHttp.Open("GET", myURL, false);
xmlHttp.Send(null);
document.all.xloadstatus.loadXML(xmlHttp.responsetext);
}
function getTableRowCount() {
var myRows = document.getElementsByTagName("tr");
alert(myRows.length);
}
</script>
<body onload="retrieveStatusHistory();getTableRowCount();">
<xml id="xloadstatus"></xml>
<table datasrc="#xloadstatus">
<!-- My row and cell definitions -->
</table>
</body>
</html>
|
|
|
|
|
how to write Edit and Update both method in Winform2008 on one button and at run time caption should be change.
if i click button edit after click should be update...
Vinay
|
|
|
|
|
|
i have copied the image module and enabled it.i want to attach it to my already existing webpage.how will i do it?i am able to attach it to an entirely new page though
|
|
|
|
|
I need to change tabs in JavaScript i searched a lot but no solutions worked for me.
|
|
|
|
|
I found a solution but i did not what is the difference between what i have and what i found
Here is what i have (solution)
var tabContainer = $get('<%=TabContainer1.ClientID%>');
if (tabContainer != undefined && tabContainer != null)
{
tabContainer = tabContainer.control;
tabContainer.set_activeTabIndex(0);
}
What did not work was:
$find('<%=TabContainer1.ClientID%>').set_activeTabIndex(2);
it told me that the control doesnt have that property
|
|
|
|
|
The $find method would have worked if you prefaced it with 'top.'
This worked for me:
<big>top</big>.$find('<%=TabContainer1.ClientID%>').set_activeTabIndex(3);
|
|
|
|
|
Could any body tell me what does $find do?? and why it returns unidentified object to a control that exists??:S
|
|
|
|
|
|
still i didnot understand it i read the blog.
|
|
|
|
|
|
the one you sent is by far the most explainable blog i found but still doesnt both functions get the the control by ID
|
|
|
|
|
Hi..
In my web application(asp.net/c#),I have RDLC report with few charts on it and want to display the report on reportviewer at runtime.
following is my code.
ReportViewer1.ProcessingMode = ProcessingMode.Local;
ReportViewer1.LocalReport.ReportEmbeddedResource = Server.MapPath("Graphs//GraphsAll.rdlc");
ReportDataSource ds1 = new ReportDataSource();
ds1.Name = "Graphs_SelectAll_DataTable1";
ds1.Value = ds.Tables[0];
ReportViewer1.LocalReport.DataSources.Add(ds1);
ReportViewer1.LocalReport.Refresh();
ReportViewer1.Visible = true;
I am getting following error
"An error occurred during local report processing.
The report definition for report 'D:\Hemant\UI\UI\User\Graphs\GraphsAll.rdlc' has not been specified"
could u tell me what's going on...
thanks
hemant
By:
Hemant Thaker
modified on Wednesday, July 29, 2009 5:28 AM
|
|
|
|