CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums

ASP.NET Web Hosting – 3 Months Free!



Zone: > NEWSGROUP > Asp.Net Forum > general_asp.net.master_pages_themes_and_navigation_controls Tags:
Item Type: NewsGroup Date Entered: 3/12/2008 9:38:56 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 1 Views: 53 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
2 Items, 1 Pages 1 |< << Go >> >|
Kannandesikan
Asp.Net User
content placeholder alignment problem3/12/2008 9:38:56 AM

0/0

Hi,

i try go align the page in the content place holder , i tried but not aligned properly centre of the page,

here with iam sending the enter aspx page please correct it

<%@ Page Language="VB" AutoEventWireup="false" MasterPageFile ="~/IPLCoupon.master"  CodeFile="policymasternew.aspx.vb" Inherits="policymasternew" %>

 <asp:Content ID ="policym" runat ="server" ContentPlaceHolderID ="ContentPlaceHolder1">

    <script language =jscript>
    var isNav4 = false, isNav5 = false, isIE4 = false
var strSeperator = "/";
var vDateType = 3;

var vYearType = 4;
var vYearLength = 2;
var err = 0;
if(navigator.appName == "Netscape") {
if (navigator.appVersion < "5") {
isNav4 = true;
isNav5 = false;
}
else
if (navigator.appVersion > "4") {
isNav4 = false;
isNav5 = true;
  }
}
else {
isIE4 = true;
}
function DateFormat(vDateName, vDateValue, e, dateCheck, dateType) {
vDateType = dateType;
if (vDateValue == "~") {
alert("AppVersion = "+navigator.appVersion+" \nNav. 4 Version = "+isNav4+" \nNav. 5 Version = "+isNav5+" \nIE Version = "+isIE4+" \nYear Type = "+vYearType+" \nDate Type = "+vDateType+" \nSeparator = "+strSeperator);
vDateName.value = "";
vDateName.focus();
return true;
}
var whichCode = (window.Event) ? e.which : e.keyCode;

if (vDateValue.length > 8 && isNav4) {
if ((vDateValue.indexOf("-") >= 1) || (vDateValue.indexOf("/") >= 1))
return true;
}
var alphaCheck = " abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ/-";
if (alphaCheck.indexOf(vDateValue) >= 1) {
if (isNav4) {
vDateName.value = "";
vDateName.focus();
vDateName.select();
return false;
}
else {
vDateName.value = vDateName.value.substr(0, (vDateValue.length-1));
return false;
  }
}
if (whichCode == 8)
return false;
else {

var strCheck = '47,48,49,50,51,52,53,54,55,56,57,58,59,95,96,97,98,99,100,101,102,103,104,105';
if (strCheck.indexOf(whichCode) != -1) {
if (isNav4) {
if (((vDateValue.length < 6 && dateCheck) || (vDateValue.length == 7 && dateCheck)) && (vDateValue.length >=1)) {
alert("Invalid Date\nPlease Re-Enter");
vDateName.value = "";
vDateName.focus();
vDateName.select();
return false;
}
if (vDateValue.length == 6 && dateCheck) {
var mDay = vDateName.value.substr(2,2);
var mMonth = vDateName.value.substr(0,2);
var mYear = vDateName.value.substr(4,4)

if (mYear.length == 2 && vYearType == 4) {
var mToday = new Date();

var checkYear = mToday.getFullYear() + 30;
var mCheckYear = '20' + mYear;
if (mCheckYear >= checkYear)
mYear = '19' + mYear;
else
mYear = '20' + mYear;
}
var vDateValueCheck = mMonth+strSeperator+mDay+strSeperator+mYear;
if (!dateValid(vDateValueCheck)) {
alert("Invalid Date\nPlease Re-Enter");
vDateName.value = "";
vDateName.focus();
vDateName.select();
return false;
}
return true;
}
else {

if (vDateValue.length >= 8  && dateCheck) {
if (vDateType == 1) // mmddyyyy
{
var mDay = vDateName.value.substr(2,2);
var mMonth = vDateName.value.substr(0,2);
var mYear = vDateName.value.substr(4,4)
vDateName.value = mMonth+strSeperator+mDay+strSeperator+mYear;
}
if (vDateType == 2) // yyyymmdd
{
var mYear = vDateName.value.substr(0,4)
var mMonth = vDateName.value.substr(4,2);
var mDay = vDateName.value.substr(6,2);
vDateName.value = mYear+strSeperator+mMonth+strSeperator+mDay;
}
if (vDateType == 3) // ddmmyyyy
{
var mMonth = vDateName.value.substr(2,2);
var mDay = vDateName.value.substr(0,2);
var mYear = vDateName.value.substr(4,4)
vDateName.value = mDay+strSeperator+mMonth+strSeperator+mYear;
}

var vDateTypeTemp = vDateType;
vDateType = 1;
var vDateValueCheck = mMonth+strSeperator+mDay+strSeperator+mYear;
if (!dateValid(vDateValueCheck)) {
alert("Invalid Date\nPlease Re-Enter");
vDateType = vDateTypeTemp;
vDateName.value = "";
vDateName.focus();
vDateName.select();
return false;
}
vDateType = vDateTypeTemp;
return true;
}
else {
if (((vDateValue.length < 8 && dateCheck) || (vDateValue.length == 9 && dateCheck)) && (vDateValue.length >=1)) {
alert("Invalid Date\nPlease Re-Enter");
vDateName.value = "";
vDateName.focus();
vDateName.select();
return false;
        }
     }
  }
}
else {
// Non isNav Check
if (((vDateValue.length < 8 && dateCheck) || (vDateValue.length == 9 && dateCheck)) && (vDateValue.length >=1)) {
alert("Invalid Date\nPlease Re-Enter");
vDateName.value = "";
vDateName.focus();
return true;
}

if (vDateValue.length >= 8 && dateCheck) {

if (vDateType == 1) // mm/dd/yyyy
{
var mMonth = vDateName.value.substr(0,2);
var mDay = vDateName.value.substr(3,2);
var mYear = vDateName.value.substr(6,4)
}
if (vDateType == 2) // yyyy/mm/dd
{
var mYear = vDateName.value.substr(0,4)
var mMonth = vDateName.value.substr(5,2);
var mDay = vDateName.value.substr(8,2);
}
if (vDateType == 3) // dd/mm/yyyy
{
var mDay = vDateName.value.substr(0,2);
var mMonth = vDateName.value.substr(3,2);
var mYear = vDateName.value.substr(6,4)
}
if (vYearLength == 4) {
if (mYear.length < 4) {
alert("Invalid Date\nPlease Re-Enter");
vDateName.value = "";
vDateName.focus();
return true;
  }
}
// Create temp. variable for storing the current vDateType
var vDateTypeTemp = vDateType;
// Change vDateType to a 1 for standard date format for validation
// Type will be changed back when validation is completed.
vDateType = 1;
// Store reformatted date to new variable for validation.
var vDateValueCheck = mMonth+strSeperator+mDay+strSeperator+mYear;
if (mYear.length == 2 && vYearType == 4 && dateCheck) {
//Turn a two digit year into a 4 digit year
var mToday = new Date();
//If the year is greater than 30 years from now use 19, otherwise use 20
var checkYear = mToday.getFullYear() + 30;
var mCheckYear = '20' + mYear;
if (mCheckYear >= checkYear)
mYear = '19' + mYear;
else
mYear = '20' + mYear;
vDateValueCheck = mMonth+strSeperator+mDay+strSeperator+mYear;
// Store the new value back to the field.  This function will
// not work with date type of 2 since the year is entered first.
if (vDateTypeTemp == 1) // mm/dd/yyyy
vDateName.value = mMonth+strSeperator+mDay+strSeperator+mYear;
if (vDateTypeTemp == 3) // dd/mm/yyyy
vDateName.value = mDay+strSeperator+mMonth+strSeperator+mYear;
}
if (!dateValid(vDateValueCheck)) {
alert("Invalid Date\nPlease Re-Enter");
vDateType = vDateTypeTemp;
vDateName.value = "";
vDateName.focus();
return true;
}
vDateType = vDateTypeTemp;
return true;
}
else {
if (vDateType == 1) {
if (vDateValue.length == 2) {
vDateName.value = vDateValue+strSeperator;
}
if (vDateValue.length == 5) {
vDateName.value = vDateValue+strSeperator;
  }
}
if (vDateType == 2) {
if (vDateValue.length == 4) {
vDateName.value = vDateValue+strSeperator;
}
if (vDateValue.length == 7) {
vDateName.value = vDateValue+strSeperator;
  }
}
if (vDateType == 3) {
if (vDateValue.length == 2) {
vDateName.value = vDateValue+strSeperator;
}
if (vDateValue.length == 5) {
vDateName.value = vDateValue+strSeperator;
  }
}
return true;
  }
}
if (vDateValue.length == 10&& dateCheck) {
if (!dateValid(vDateName)) {

alert("Invalid Date\nPlease Re-Enter");
vDateName.focus();
vDateName.select();
  }
}
return false;
}
else {

if (isNav4) {
vDateName.value = "";
vDateName.focus();
vDateName.select();
return false;
}
else
{
vDateName.value = vDateName.value.substr(0, (vDateValue.length-1));
return false;
        }
     }
  }
}
function dateValid(objName) {
var strDate;
var strDateArray;
var strDay;
var strMonth;
var strYear;
var intday;
var intMonth;
var intYear;
var booFound = false;
var datefield = objName;
var strSeparatorArray = new Array("-"," ","/",".");
var intElementNr;
// var err = 0;
var strMonthArray = new Array(12);
strMonthArray[0] = "Jan";
strMonthArray[1] = "Feb";
strMonthArray[2] = "Mar";
strMonthArray[3] = "Apr";
strMonthArray[4] = "May";
strMonthArray[5] = "Jun";
strMonthArray[6] = "Jul";
strMonthArray[7] = "Aug";
strMonthArray[8] = "Sep";
strMonthArray[9] = "Oct";
strMonthArray[10] = "Nov";
strMonthArray[11] = "Dec";
//strDate = datefield.value;
strDate = objName;
if (strDate.length < 1) {
return true;
}
for (intElementNr = 0; intElementNr < strSeparatorArray.length; intElementNr++) {
if (strDate.indexOf(strSeparatorArray[intElementNr]) != -1) {
strDateArray = strDate.split(strSeparatorArray[intElementNr]);
if (strDateArray.length != 3) {
err = 1;
return false;
}
else {
strDay = strDateArray[0];
strMonth = strDateArray[1];
strYear = strDateArray[2];
}
booFound = true;
  }
}
if (booFound == false) {
if (strDate.length>5) {
strDay = strDate.substr(0, 2);
strMonth = strDate.substr(2, 2);
strYear = strDate.substr(4);
  }
}
//Adjustment for short years entered
if (strYear.length == 2) {
strYear = '20' + strYear;
}
strTemp = strDay;
strDay = strMonth;
strMonth = strTemp;
intday = parseInt(strDay, 10);
if (isNaN(intday)) {
err = 2;
return false;
}
intMonth = parseInt(strMonth, 10);
if (isNaN(intMonth)) {
for (i = 0;i<12;i++) {
if (strMonth.toUpperCase() == strMonthArray[i].toUpperCase()) {
intMonth = i+1;
strMonth = strMonthArray[i];
i = 12;
  }
}
if (isNaN(intMonth)) {
err = 3;
return false;
  }
}
intYear = parseInt(strYear, 10);
if (isNaN(intYear)) {
err = 4;
return false;
}
if (intMonth>12 || intMonth<1) {
err = 5;
return false;
}
if ((intMonth == 1 || intMonth == 3 || intMonth == 5 || intMonth == 7 || intMonth == 8 || intMonth == 10 || intMonth == 12) && (intday > 31 || intday < 1)) {
err = 6;
return false;
}
if ((intMonth == 4 || intMonth == 6 || intMonth == 9 || intMonth == 11) && (intday > 30 || intday < 1)) {
err = 7;
return false;
}
if (intMonth == 2) {
if (intday < 1) {
err = 8;
return false;
}
if (LeapYear(intYear) == true) {
if (intday > 29) {
err = 9;
return false;
  }
}
else {
if (intday > 28) {
err = 10;
return false;
     }
  }
}
return true;
}
function LeapYear(intYear) {
if (intYear % 100 == 0) {
if (intYear % 400 == 0) { return true; }
}
else {
if ((intYear % 4) == 0) { return true; }
}
return false;
}
function doDecimalTextbox(textBox,e)
     {
        if(e.keyCode==46 ||e.keyCode==8 ||e.keyCode==37 ||e.keyCode==39)
        {
            return;
        }
       
        var textHandle = textBox.value;    
       
        if(isNaN(textHandle))
       
        {   
            alert("only numeric allowed");
            textBox.value = '';       
        }
        else
        {
            if(textHandle.indexOf(".")!= -1)
            {
                var prfx = textHandle.substring(0,textHandle.indexOf("."));
                if(prfx.length >7)
                {
                    prfx = prfx.substring(0,7);              
                }       
                var sfx = textHandle.substring((textHandle.indexOf(".")+1), textHandle.length);
                if(sfx.length >1)
                {
                    sfx = sfx.substring(0,2);
                }
                textBox.value = prfx+"."+sfx;           
            }       
            else if(textHandle.length >12)
            {
                textHandle = textHandle.substring(0,12);              
                textBox.value = textHandle;
            }
        }   
     } 

    </script>

        <asp:DropDownList ID="DropDownList1" runat="server" Style="z-index: 100; left: 160px;
            position: absolute; top: 470px" Width="140px">
        </asp:DropDownList>
        <asp:TextBox ID="TextBox2" runat="server" Style="z-index: 101; left: 400px; position: absolute;
            top: 440px"></asp:TextBox>
        <asp:TextBox ID="TextBox1" runat="server" Style="z-index: 102; left: 150px; position: absolute;
            top: 80px" Width="310px"></asp:TextBox>
        <asp:Button ID="Button1" runat="server" Style="z-index: 103; left: 480px; position: absolute;
            top: 80px" Text="Button" Width="30px" />
        <asp:Button ID="btnsave" runat="server" Style="z-index: 104; left: 240px; position: absolute;
            top: 390px" Text="Save" Width="100px" />
        &nbsp;
        <asp:TextBox ID="TextBox4" runat="server" onFocus="javascript:vDateType='1'"  onkeyup ="DateFormat(this,this.value,event,false,'1')" onBlur="DateFormat(this,this.value,event,true,'1')" Style="z-index: 105; left: 220px; position: absolute;
            top: 360px" Width="170px"></asp:TextBox>
        <asp:GridView ID="GridView2" runat="server" AutoGenerateColumns="False" Style="z-index: 106;
            left: 120px; position: absolute; top: 430px" Width="440px" DataKeyNames="fldrefno" BackColor="White">
            <Columns>
                <asp:TemplateField HeaderText="referenceno">
                    <EditItemTemplate>
                        <asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("fldrefno") %>'></asp:TextBox>
                    </EditItemTemplate>
                    <ItemTemplate>
                        <asp:Label ID="Label1" runat="server" Text='<%# Bind("fldrefno") %>'></asp:Label>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:CommandField ShowEditButton="True" />
            </Columns>
            <HeaderStyle BackColor="DarkBlue" ForeColor="White" />
            <AlternatingRowStyle BackColor="DarkBlue" ForeColor="White" />
        </asp:GridView>
        <asp:Panel ID="Panel1" runat="server" BackColor="White" Height="240px" Style="z-index: 107;
            left: 110px; position: absolute; top: 110px" Width="460px">
            <asp:GridView ID="GridView3" runat="server" AutoGenerateColumns="False" Height="190px" OnSelectedIndexChanged  = "GridView3_SelectedIndexChanged"
                Style="z-index: 100; left: 20px; position: absolute; top: 20px" Width="430px" BackColor="White">
                <Columns>
                    <asp:TemplateField HeaderText="Code">
                        <EditItemTemplate>
                            <asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("fldccode") %>'></asp:TextBox>
                        </EditItemTemplate>
                        <ItemTemplate>
                            <asp:Label ID="Label1" runat="server" Text='<%# Bind("fldccode") %>'></asp:Label>
                        </ItemTemplate>
                    </asp:TemplateField>
                    <asp:TemplateField HeaderText="CoupanName">
                        <EditItemTemplate>
                            <asp:TextBox ID="TextBox2" runat="server" Text='<%# Bind("fldmeaning") %>'></asp:TextBox>
                        </EditItemTemplate>
                        <ItemTemplate>
                            <asp:Label ID="Label2" runat="server" Text='<%# Bind("fldmeaning") %>'></asp:Label>
                        </ItemTemplate>
                    </asp:TemplateField>
                    <asp:TemplateField HeaderText="points">
                        <EditItemTemplate>
                            <asp:TextBox ID="TextBox7" runat="server" Style="z-index: 100; left: 40px; position: static;
                                top: 70px"></asp:TextBox>
                        </EditItemTemplate>
                        <ItemTemplate>
                            <asp:TextBox ID="Txtccode" runat="server" Style="z-index: 100; left: 40px; position: static;
                                top: 60px"></asp:TextBox>
                        </ItemTemplate>
                    </asp:TemplateField>
                    <asp:TemplateField ShowHeader="False">
                        <ItemTemplate>
                            <asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False"  CommandName="Delete"
                                Text="Remove"></asp:LinkButton>
                        </ItemTemplate>
                    </asp:TemplateField>
                </Columns>
                <HeaderStyle BackColor="DarkBlue" ForeColor="White" />
                <AlternatingRowStyle BackColor="DarkBlue" ForeColor="White" />
            </asp:GridView>
        </asp:Panel>
        <asp:Panel ID="Panel2" runat="server" BackColor="White" BorderColor="DarkBlue" Height="240px"
            Style="z-index: 99; left: 110px; position: absolute; top: 110px" Width="460px">
            <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" Height="190px"
                Style="z-index: 100; left: 10px; position: absolute; top: 10px" Width="430px" BackColor="White">
                <Columns>
                    <asp:TemplateField HeaderText="fldccode">
                        <EditItemTemplate>
                            <asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("fldccode") %>'></asp:TextBox>
                        </EditItemTemplate>
                        <ItemTemplate>
                            &nbsp;
                            <asp:TextBox ID="TextBox3" runat="server" Style="z-index: 100; left: 30px; position: static;
                                top: 70px" Text='<%# Bind("fldccode") %>'></asp:TextBox>
                        </ItemTemplate>
                    </asp:TemplateField>
                    <asp:TemplateField HeaderText="CoupanName">
                        <EditItemTemplate>
                            <asp:TextBox ID="TextBox2" runat="server" Text='<%# Bind("fldmeaning") %>'></asp:TextBox>
                        </EditItemTemplate>
                        <ItemTemplate>
                            <asp:Label ID="Label2" runat="server" Text='<%# Bind("fldmeaning") %>'></asp:Label>
                        </ItemTemplate>
                    </asp:TemplateField>
                    <asp:TemplateField HeaderText="Points">
                        <EditItemTemplate>
                            <asp:TextBox ID="TextBox6" runat="server" Style="z-index: 100; left: 40px; position: static;
                                top: 60px"></asp:TextBox>
                        </EditItemTemplate>
                        <ItemTemplate>
                            <asp:TextBox ID="TextBox5" runat="server" Style="z-index: 100; left: 30px; position: static;
                                top: 60px" Text='<%# bind("fldcpoint") %>'></asp:TextBox>
                        </ItemTemplate>
                    </asp:TemplateField>
                </Columns>
                <HeaderStyle BackColor="DarkBlue" ForeColor="White" />
                <AlternatingRowStyle BackColor="DarkBlue" ForeColor="White" />
            </asp:GridView>
        </asp:Panel>
        <asp:Button ID="btnupdate" runat="server" Style="z-index: 109; left: 350px; position: absolute;
            top: 390px" Text="Update" />
        <asp:Button ID="btndiscard" runat="server" Style="z-index: 110; left: 420px; position: absolute;
            top: 390px" Text="Discard" />
        <asp:Label ID="lbleffective" runat="server" Style="z-index: 111; left: 110px; position: absolute;
            top: 360px" Text="Effective Date" Width="110px"></asp:Label>
   
    </asp:Content>


Regards,
Kannandesikan
Amanda Wang - M
Asp.Net User
Re: content placeholder alignment problem3/14/2008 5:20:47 AM

0/0

Hi,

Kannandesikan:
i try go align the page in the content place holder , i tried but not aligned properly centre of the page,

If you want to align the content page in the contentpalceholder, there is no align property for the contentplaceholder, but you can put the contentplaceholder in a table or div control and set the table or div's align property to align the contentplaceholder to align the contentplaceholder.

For example:

<td style="height: 283px; width: 468px;" valign="top" align=center>
                                       <asp:ContentPlaceHolder ID="Main" runat="server">
                </asp:ContentPlaceHolder>
            </td>

Hope it helps.


Please remember to mark the replies as answers if they help and unmark them if they provide no help.


Yours sincerely,
Amanda Wang
Microsoft Online Community Support
2 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Foundation PHP for Dreamweaver 8 Authors: David Powers, Pages: 510, Published: 2005
Pro ASP.NET 2.0 in VB 2005: From Professional to Expert Authors: Laurence Moroney, Matthew MacDonald, Pages: 1253, Published: 2006
Pro ASP.NET 3.5 in C# 2008 Authors: Matthew MacDonald, Mario Szpuszta, Pages: 1498, Published: 2007
Pro ASP.NET 2.0 in C# 2005 Authors: Matthew MacDonald, Mario Szpuszta, Pages: 1255, Published: 2005
ASP.NET 2.0 Cookbook Authors: Michael A. Kittel, Geoffrey T. Leblond, Pages: 989, Published: 2005
Beginning ASP.NET 2.0 in VB 2005: From Novice to Professional Authors: Matthew MacDonald, Pages: 1063, Published: 2006
Beginning ASP.NET 3.5 in C# 2008: From Novice to Professional Authors: Matthew MacDonald, Pages: 954, Published: 2007
PowerPoint 2007 Bible Authors: Faithe Wempen, Pages: 801, Published: 2007
Learning to Use PowerPoint: Creating Effective Presentations Authors: Angela Bessant, Pages: 188, Published: 2001
How to Prepare for Praxis: PPST/PLT, Elementary School Subject Assessments, ParaPro Assessment, Overview of Praxis II Subject Assessments Authors: Robert D. Postman, Pages: 680, Published: 2005

Web:
content placeholder alignment problem - ASP.NET Forums content placeholder alignment problem. Last post 03-14-2008 1:20 AM by Amanda Wang - MSFT. 1 replies. Sort Posts: ...
ContentPlaceHolder alignment - ASP.NET Forums ContentPlaceHolder alignment. Last post 04-07-2006 11:48 AM by bumoftheday. ... My problem is that the contentholder, when I view my page, ...
p2p.wrox.com Forums - Alignment of ContentPlaceHolder However I think your problem is you need to place your contentPlaceHolder in a < div> and then align the
. Go to Top of Page ...
ContentPlaceHolder problem [Archive] - VBForums [Archive] ContentPlaceHolder problem ASP.NET. ... font-style: italic; position: absolute; top: 23px; text-align: center" Width="506px" ...
unable to place content place holder in table in an asp.net master ...
...
Listing 1: Sample Master Page(Sample.master) <%@ Master Language ... ... style="height: 13px" align="center" colspan="2"> Welcome to the world of Master Pages
AppDev: Something You Should Know by Irena Kennedy : SYSK 239 ... Nov 13, 2006 ... The challenge to keep the content placeholder between the header and footer ... text-align: center;. border: solid 1px black;. } #Content ...
Div tags in content page - Sri Lanka .NET Forum My problem i cant use tables for my application. ... HTML code showing div tags are inside content placeholder. But browser not show correct ...
Having a hard time figuring out the problem of extra white space ... Re: Having a hard time figuring out the problem of extra white space at bottom of all ....




Search This Site:










delete folder when session time-out..

adding markup to posts

name "configurationmanager" is not declared

e-mail sent from web form

counting differences between two dates

transfer value form one aspx page to the other

using httpwebrequest/httpwebresponse to extract server response url query string in code beside only

how can i change the "src" attribute of an iframe at runtime?

calendar control

read a txt file

what's the best starter kit for e-commerce?

how to call a msg box

creating an excel file dynamically very urgent

stack and heap in c#

microsoft great plains integration through econnect

help with active link

dopostback and onsubmit

one line in asp.net make big confuse for me !!!

sdk 2.0 quickstart tutorials installation

linklist control??

mails should come in proper format using dart

two question from beginner

page focus

receive photo via email & store.

panelcontrol.visible = "true" causes line breaks. ie7

can i instantiate an object outside of a sub and use it in multiple subs?

creating table

variables declared/assigned in codebehind page not recognised in design page

get the hundredth postion in a csv file

dynamically open a new window and resize to table..help

  Privacy | Contact Us
All Times Are GMT