AllOutAnime
New Member
I have a list of asp:LinkLabels which are contained a repeater. I have a button that says "Get Started" when a user clicks on this button, I want it to execute the first item in the repeater.I have this code working fine in Chrome, but not in any other browser:\[code\] <asp:Button ID="SubmitInfo" runat="server" Text="Save and Get Started" Width="218px" OnClientClick="__doPostBack('rptList$ctl01$Label15','')" CssClass="submit-button-huge" OnClick="SubmitInfo_Click" />\[/code\]Is there a way to do this server side without using the __doPostBack javascript?Is there anything glaringly wrong here?