Click here to Skip to main content
15,887,364 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionProblem while exporting and Importing using Gridview to Excel Pin
codingrocks8-Jul-10 0:47
codingrocks8-Jul-10 0:47 
QuestionWhat Service Technology is the one we need to use ? [modified] Pin
Nadia Monalisa7-Jul-10 23:52
Nadia Monalisa7-Jul-10 23:52 
AnswerRe: What Service Technology is the one we need to use ? Pin
raju melveetilpurayil8-Jul-10 0:08
professionalraju melveetilpurayil8-Jul-10 0:08 
QuestionAsp.net webservice in command line Pin
Vijay Mudunuri7-Jul-10 22:53
Vijay Mudunuri7-Jul-10 22:53 
AnswerRe: Asp.net webservice in command line Pin
Peace ON8-Jul-10 0:54
Peace ON8-Jul-10 0:54 
Question[error] controlRenderingCompatibilityVersion' attribute is not declared [modified] Pin
jon-807-Jul-10 22:39
professionaljon-807-Jul-10 22:39 
QuestionExtending LoginName Control !! Pin
Nadia Monalisa7-Jul-10 17:17
Nadia Monalisa7-Jul-10 17:17 
AnswerRe: Extending LoginName Control !! Pin
Pavel Yermalovich7-Jul-10 20:10
Pavel Yermalovich7-Jul-10 20:10 
Hello! It isn't difficult to do. You drag Login Control into your page. Click on SmartTag and then choose "Convert to Template". You should get the following html code:

<br />
<asp:Login ID="Login1" runat="server"><br />
            <LayoutTemplate><br />
                <table border="0" cellpadding="1" cellspacing="0" <br />
                    style="border-collapse:collapse;"><br />
                    <tr><br />
                        <td><br />
                            <table border="0" cellpadding="0"><br />
                                <tr><br />
                                    <td align="center" colspan="2"><br />
                                        Log In</td><br />
                                </tr><br />
                                <tr><br />
                                    <td align="right"><br />
                                        <asp:Label ID="UserNameLabel" runat="server" AssociatedControlID="UserName">User Name:</asp:Label><br />
                                    </td><br />
                                    <td><br />
                                        <asp:TextBox ID="UserName" runat="server"></asp:TextBox><br />
                                        <asp:RequiredFieldValidator ID="UserNameRequired" runat="server" <br />
                                            ControlToValidate="UserName" ErrorMessage="User Name is required." <br />
                                            ToolTip="User Name is required." ValidationGroup="Login1">*</asp:RequiredFieldValidator><br />
                                    </td><br />
                                </tr><br />
                                <tr><br />
                                    <td align="right"><br />
                                        <asp:Label ID="PasswordLabel" runat="server" AssociatedControlID="Password">Password:</asp:Label><br />
                                    </td><br />
                                    <td><br />
                                        <asp:TextBox ID="Password" runat="server" TextMode="Password"></asp:TextBox><br />
                                        <asp:RequiredFieldValidator ID="PasswordRequired" runat="server" <br />
                                            ControlToValidate="Password" ErrorMessage="Password is required." <br />
                                            ToolTip="Password is required." ValidationGroup="Login1">*</asp:RequiredFieldValidator><br />
                                    </td><br />
                                </tr><br />
                                <tr><br />
                                    <td colspan="2"><br />
                                        <asp:CheckBox ID="RememberMe" runat="server" Text="Remember me next time." /><br />
                                    </td><br />
                                </tr><br />
                                <tr><br />
                                    <td align="center" colspan="2" style="color:Red;"><br />
                                        <asp:Literal ID="FailureText" runat="server" EnableViewState="False"></asp:Literal><br />
                                    </td><br />
                                </tr><br />
                                <tr><br />
                                    <td align="right" colspan="2"><br />
                                        <asp:Button ID="LoginButton" runat="server" CommandName="Login" Text="Log In" <br />
                                            ValidationGroup="Login1" /><br />
                                    </td><br />
                                </tr><br />
                            </table><br />
                        </td><br />
                    </tr><br />
                </table><br />
            </LayoutTemplate><br />
        </asp:Login><br />

GeneralRe: Extending LoginName Control !! Pin
Nadia Monalisa7-Jul-10 23:46
Nadia Monalisa7-Jul-10 23:46 
QuestionCalculate the sum of a Formula field Pin
indian1437-Jul-10 10:56
indian1437-Jul-10 10:56 
AnswerRe: Calculate the sum of a Formula field Pin
Eddy Vluggen7-Jul-10 11:32
professionalEddy Vluggen7-Jul-10 11:32 
GeneralRe: Calculate the sum of a Formula field Pin
indian1437-Jul-10 11:43
indian1437-Jul-10 11:43 
QuestionAccording to Search Engine Optimization Technique, will my page rank go down if I implement Form Authentication ? Pin
Nadia Monalisa7-Jul-10 10:08
Nadia Monalisa7-Jul-10 10:08 
AnswerRe: According to Search Engine Optimization Technique, will my page rank go down if I implement Form Authentication ? Pin
Eddy Vluggen7-Jul-10 11:30
professionalEddy Vluggen7-Jul-10 11:30 
AnswerRe: According to Search Engine Optimization Technique, will my page rank go down if I implement Form Authentication ? Pin
Martin Jarvis8-Jul-10 10:22
Martin Jarvis8-Jul-10 10:22 
QuestionI am Getting the error like Pin
jintalPatel7-Jul-10 6:22
jintalPatel7-Jul-10 6:22 
AnswerRe: I am Getting the error like Pin
Sandeep Mewara7-Jul-10 6:35
mveSandeep Mewara7-Jul-10 6:35 
GeneralRe: I am Getting the error like Pin
jintalPatel7-Jul-10 6:48
jintalPatel7-Jul-10 6:48 
GeneralRe: I am Getting the error like Pin
Sandeep Mewara7-Jul-10 7:08
mveSandeep Mewara7-Jul-10 7:08 
AnswerRe: I am Getting the error like Pin
raju melveetilpurayil7-Jul-10 7:41
professionalraju melveetilpurayil7-Jul-10 7:41 
GeneralRe: I am Getting the error like Pin
Sandeep Mewara7-Jul-10 8:07
mveSandeep Mewara7-Jul-10 8:07 
GeneralRe: I am Getting the error like Pin
raju melveetilpurayil7-Jul-10 8:21
professionalraju melveetilpurayil7-Jul-10 8:21 
QuestionHow to call server side function in Javascript Pin
Sr...Frank7-Jul-10 4:37
Sr...Frank7-Jul-10 4:37 
AnswerRe: How to call server side function in Javascript Pin
R. Giskard Reventlov7-Jul-10 5:01
R. Giskard Reventlov7-Jul-10 5:01 
AnswerRe: How to call server side function in Javascript Pin
Sandeep Mewara7-Jul-10 6:32
mveSandeep Mewara7-Jul-10 6:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.